Try ``` class MetricsConfiguratin { @Bean ...
# announcements
m
Try
Copy code
class MetricsConfiguratin {
    @Bean
    fun metricsCommonTags(): MeterRegistryCustomizer<MeterRegistry> {
        return MetricsRegistry { registry -> registry.config().commonTags("application", "rurocker_metrics_service") }
    }
}
notice the
MetricsRegistry
before the lambda to get the Kotlin SAM conversion
❤️ 1