override fun map()

in app/src/main/kotlin/io/klibs/app/configuration/MetricsConfiguration.kt [58:63]


            override fun map(id: Meter.Id): Meter.Id {
                if (enabledMetricsPrefixes.any { id.name.startsWith(it) }) {
                    return id.withName(KLIBS_PREFIX + '.' + id.name)
                }
                return id
            }