Fix typo in method name (#4855)
This commit is contained in:
parent
7a49b2bea5
commit
d6e69c746e
|
@ -26,7 +26,7 @@ public class RabbitSingletons {
|
|||
private static final Instrumenter<DeliveryRequest, Void> deliverInstrumenter;
|
||||
|
||||
static {
|
||||
channelInstrumenter = createChanneInstrumenter();
|
||||
channelInstrumenter = createChannelInstrumenter();
|
||||
receiveInstrumenter = createReceiveInstrumenter();
|
||||
deliverInstrumenter = createDeliverInstrumenter();
|
||||
}
|
||||
|
@ -43,7 +43,7 @@ public class RabbitSingletons {
|
|||
return deliverInstrumenter;
|
||||
}
|
||||
|
||||
private static Instrumenter<ChannelAndMethod, Void> createChanneInstrumenter() {
|
||||
private static Instrumenter<ChannelAndMethod, Void> createChannelInstrumenter() {
|
||||
return Instrumenter.<ChannelAndMethod, Void>builder(
|
||||
GlobalOpenTelemetry.get(), instrumentationName, ChannelAndMethod::getMethod)
|
||||
.addAttributesExtractors(
|
||||
|
|
Loading…
Reference in New Issue