Uses of Interface
org.forgerock.monitoring.api.instrument.TimeGauge
-
Packages that use TimeGauge Package Description org.forgerock.monitoring.api.instrument Common Monitoring API Core based on MicroMeterorg.forgerock.monitoring.dropwizard Implementation for Common Monitoring API based on DropWizard. -
-
Uses of TimeGauge in org.forgerock.monitoring.api.instrument
Methods in org.forgerock.monitoring.api.instrument that return TimeGauge Modifier and Type Method Description TimeGauge
TimeGauge.Builder. register(MeterRegistry registry)
Add the time gauge to a single registry, or return an existing time gauge in that registry.<T> TimeGauge
MeterRegistry.More. timeGauge(String name, Iterable<Tag> tags, T obj, TimeUnit timeFunctionUnit, ToDoubleFunction<T> timeFunction)
A gauge that tracks a time value, to be scaled to the monitoring system's base time unit.<T> TimeGauge
MeterRegistry.More. timeGauge(Meter.Id id, T obj, TimeUnit timeFunctionUnit, ToDoubleFunction<T> timeFunction)
A gauge that tracks a time value, to be scaled to the monitoring system's base time unit. -
Uses of TimeGauge in org.forgerock.monitoring.dropwizard
Methods in org.forgerock.monitoring.dropwizard that return TimeGauge Modifier and Type Method Description protected <T> TimeGauge
AbstractMeterRegistry. newTimeGauge(Meter.Id id, T obj, TimeUnit valueFunctionUnit, ToDoubleFunction<T> valueFunction)
Build a new time gauge to be added to the registry.
-