diff --git a/src/cmd/services/m3coordinator/server/m3msg/protobuf_handler.go b/src/cmd/services/m3coordinator/server/m3msg/protobuf_handler.go index 6adaad65b4..a7319ff24d 100644 --- a/src/cmd/services/m3coordinator/server/m3msg/protobuf_handler.go +++ b/src/cmd/services/m3coordinator/server/m3msg/protobuf_handler.go @@ -43,7 +43,6 @@ type Options struct { } type handlerMetrics struct { - messageReadError tally.Counter metricAccepted tally.Counter droppedMetricBlackholePolicy tally.Counter droppedMetricDecodeError tally.Counter @@ -52,7 +51,6 @@ type handlerMetrics struct { func newHandlerMetrics(scope tally.Scope) handlerMetrics { messageScope := scope.SubScope("metric") return handlerMetrics{ - messageReadError: scope.Counter("message-read-error"), metricAccepted: messageScope.Counter("accepted"), droppedMetricDecodeError: messageScope.Tagged(map[string]string{ "reason": "decode-error",