Improve naming for instrumentation class.
This commit is contained in:
parent
513cded8aa
commit
a1a2a0db27
|
@ -17,12 +17,11 @@ import org.apache.kafka.clients.consumer.ConsumerRecord;
|
||||||
import org.apache.kafka.common.record.TimestampType;
|
import org.apache.kafka.common.record.TimestampType;
|
||||||
|
|
||||||
// This is necessary because SourceNodeRecordDeserializer drops the headers. :-(
|
// This is necessary because SourceNodeRecordDeserializer drops the headers. :-(
|
||||||
public class KafkaStreamsSourceNodeRecordDeserializerInstrumentation {
|
@AutoService(Instrumenter.class)
|
||||||
|
public class KafkaStreamsSourceNodeRecordDeserializerInstrumentation
|
||||||
|
extends Instrumenter.Configurable {
|
||||||
|
|
||||||
@AutoService(Instrumenter.class)
|
public KafkaStreamsSourceNodeRecordDeserializerInstrumentation() {
|
||||||
public static class StartInstrumentation extends Instrumenter.Configurable {
|
|
||||||
|
|
||||||
public StartInstrumentation() {
|
|
||||||
super("kafka", "kafka-streams");
|
super("kafka", "kafka-streams");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,5 +67,4 @@ public class KafkaStreamsSourceNodeRecordDeserializerInstrumentation {
|
||||||
incoming.headers());
|
incoming.headers());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue