Uses of Interface
org.apache.pinot.spi.metrics.PinotMetricName
-
Packages that use PinotMetricName Package Description org.apache.pinot.spi.annotations.metrics org.apache.pinot.spi.metrics -
-
Uses of PinotMetricName in org.apache.pinot.spi.annotations.metrics
Methods in org.apache.pinot.spi.annotations.metrics that return PinotMetricName Modifier and Type Method Description PinotMetricNamePinotMetricsFactory. makePinotMetricName(Class<?> klass, String name)Makes aPinotMetricNamegiven the class and the metric name. -
Uses of PinotMetricName in org.apache.pinot.spi.metrics
Methods in org.apache.pinot.spi.metrics that return PinotMetricName Modifier and Type Method Description static PinotMetricNamePinotMetricUtils. makePinotMetricName(Class<?> klass, String name)Methods in org.apache.pinot.spi.metrics that return types with arguments of type PinotMetricName Modifier and Type Method Description Map<PinotMetricName,PinotMetric>PinotMetricsRegistry. allMetrics()Returns an unmodifiable map of all metrics and their names.Methods in org.apache.pinot.spi.metrics with parameters of type PinotMetricName Modifier and Type Method Description static <T> PinotGauge<T>PinotMetricUtils. makeGauge(PinotMetricsRegistry registry, PinotMetricName name, PinotGauge<T> gauge)static PinotMeterPinotMetricUtils. makePinotMeter(PinotMetricsRegistry registry, PinotMetricName name, String eventType, TimeUnit unit)static PinotTimerPinotMetricUtils. makePinotTimer(PinotMetricsRegistry registry, PinotMetricName name, TimeUnit durationUnit, TimeUnit rateUnit)PinotCounterPinotMetricsRegistry. newCounter(PinotMetricName name)Creates a newPinotCounterand registers it under the given metric name.<T> PinotGauge<T>PinotMetricsRegistry. newGauge(PinotMetricName name, PinotGauge<T> gauge)Given a newPinotGauge, registers it under the given metric name.PinotHistogramPinotMetricsRegistry. newHistogram(PinotMetricName name, boolean biased)Creates a newPinotHistogramand registers it under the given metric name.PinotMeterPinotMetricsRegistry. newMeter(PinotMetricName name, String eventType, TimeUnit unit)Creates a newPinotMeterand registers it under the given metric name.PinotTimerPinotMetricsRegistry. newTimer(PinotMetricName name, TimeUnit durationUnit, TimeUnit rateUnit)Creates a newPinotTimerand registers it under the given metric name.voidPinotMetricsRegistry. removeMetric(PinotMetricName name)Removes the metric with the given name.static voidPinotMetricUtils. removeMetric(PinotMetricsRegistry registry, PinotMetricName name)
-