All the other metrics appear to be in an acceptabl...
# ktor
h
All the other metrics appear to be in an acceptable format, its just this one
Copy code
pipeline.environment.monitor.subscribe(Routing.RoutingCallStarted) { call ->
                val name = call.route.toString()
                       
                val meter = feature.registry.meter(MetricRegistry.name(name, "meter"))
                val timer = feature.registry.timer(MetricRegistry.name(name, "timer"))
                meter.mark()
                val context = timer.time()
                call.attributes.put(routingMetricsKey, RoutingMetrics(name, context))
            }