diff options
Diffstat (limited to 'sources')
-rw-r--r-- | sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/metrics/MicrometerMetrics.kt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/metrics/MicrometerMetrics.kt b/sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/metrics/MicrometerMetrics.kt index b832bc9f..fd1d9c53 100644 --- a/sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/metrics/MicrometerMetrics.kt +++ b/sources/hv-collector-main/src/main/kotlin/org/onap/dcae/collectors/veshv/main/metrics/MicrometerMetrics.kt @@ -21,6 +21,7 @@ package org.onap.dcae.collectors.veshv.main.metrics import arrow.syntax.function.memoize import io.micrometer.core.instrument.Counter +import io.micrometer.core.instrument.Timer import io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics import io.micrometer.core.instrument.binder.jvm.JvmGcMetrics import io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics @@ -53,8 +54,12 @@ class MicrometerMetrics internal constructor( private val totalConnections = registry.counter(name(CONNECTIONS)) private val disconnections = registry.counter(name(DISCONNECTIONS)) - private val processingTime = registry.timer(name(MESSAGES, PROCESSING, TIME)) - private val totalLatency = registry.timer(name(MESSAGES, LATENCY)) + private val processingTime = Timer.builder(name(MESSAGES, PROCESSING, TIME)) + .publishPercentileHistogram(true) + .register(registry) + private val totalLatency = Timer.builder(name(MESSAGES, LATENCY)) + .publishPercentileHistogram(true) + .register(registry) private val sentMessages = registry.counter(name(MESSAGES, SENT)) private val sentMessagesByTopic = { topic: String -> |