Github user tzulitai commented on a diff in the pull request: https://github.com/apache/flink/pull/5182#discussion_r160841457 --- Diff: flink-connectors/flink-connector-kinesis/src/main/java/org/apache/flink/streaming/connectors/kinesis/internals/KinesisDataFetcher.java --- @@ -542,6 +545,16 @@ public int registerNewSubscribedShardState(KinesisStreamShardState newSubscribed } } + /** + * Registers a metric group associated with the shard id of the provided {@link KinesisStreamShardState shardState}. + */ + private MetricGroup buildMetricGroupForShard(KinesisStreamShardState shardState) { + return runtimeContext + .getMetricGroup() + .addGroup("Kinesis") --- End diff -- Ah I see, that makes sense then. Could you then name it as `KinesisConsumer`, to be more consistent?
---