Uses of Class
io.opencensus.metrics.export.Metric
-
Packages that use Metric Package Description io.opencensus.exporter.metrics.util io.opencensus.exporter.stats.prometheus io.opencensus.implcore.metrics io.opencensus.implcore.stats io.opencensus.metrics.export -
-
Uses of Metric in io.opencensus.exporter.metrics.util
Fields in io.opencensus.exporter.metrics.util with type parameters of type Metric Modifier and Type Field Description private java.util.Queue<Metric>
QueueMetricProducer. bufferedMetrics
Methods in io.opencensus.exporter.metrics.util that return types with arguments of type Metric Modifier and Type Method Description java.util.Collection<Metric>
QueueMetricProducer. getMetrics()
Method parameters in io.opencensus.exporter.metrics.util with type arguments of type Metric Modifier and Type Method Description abstract void
MetricExporter. export(java.util.Collection<Metric> metrics)
Exports the list of givenMetric
.void
QueueMetricProducer. pushMetrics(java.util.Collection<Metric> metrics)
PushesMetric
s to thisQueueMetricProducer
. -
Uses of Metric in io.opencensus.exporter.stats.prometheus
Methods in io.opencensus.exporter.stats.prometheus with parameters of type Metric Modifier and Type Method Description (package private) static io.prometheus.client.Collector.MetricFamilySamples
PrometheusExportUtils. createMetricFamilySamples(Metric metric, java.lang.String namespace)
Method parameters in io.opencensus.exporter.stats.prometheus with type arguments of type Metric Modifier and Type Method Description void
PrometheusStatsCollector.DescribeMetricExporter. export(java.util.Collection<Metric> metrics)
void
PrometheusStatsCollector.ExportMetricExporter. export(java.util.Collection<Metric> metrics)
-
Uses of Metric in io.opencensus.implcore.metrics
Methods in io.opencensus.implcore.metrics that return Metric Modifier and Type Method Description Metric
DerivedDoubleCumulativeImpl. getMetric(Clock clock)
Metric
DerivedDoubleGaugeImpl. getMetric(Clock clock)
Metric
DerivedLongCumulativeImpl. getMetric(Clock clock)
Metric
DerivedLongGaugeImpl. getMetric(Clock clock)
Metric
DoubleCumulativeImpl. getMetric(Clock clock)
Metric
DoubleGaugeImpl. getMetric(Clock clock)
Metric
LongCumulativeImpl. getMetric(Clock clock)
Metric
LongGaugeImpl. getMetric(Clock clock)
Metric
Meter. getMetric(Clock clock)
Provides aMetric
with one or moreTimeSeries
.Methods in io.opencensus.implcore.metrics that return types with arguments of type Metric Modifier and Type Method Description java.util.Collection<Metric>
MetricRegistryImpl.MetricProducerForRegistry. getMetrics()
-
Uses of Metric in io.opencensus.implcore.stats
Methods in io.opencensus.implcore.stats that return Metric Modifier and Type Method Description (package private) Metric
MutableViewData.CumulativeMutableViewData. toMetric(Timestamp now, CurrentState.State state)
(package private) Metric
MutableViewData.IntervalMutableViewData. toMetric(Timestamp now, CurrentState.State state)
(package private) abstract Metric
MutableViewData. toMetric(Timestamp now, CurrentState.State state)
Methods in io.opencensus.implcore.stats that return types with arguments of type Metric Modifier and Type Method Description (package private) java.util.List<Metric>
MeasureToViewMap. getMetrics(Clock clock, CurrentState.State state)
java.util.Collection<Metric>
MetricProducerImpl. getMetrics()
(package private) java.util.Collection<Metric>
StatsManager. getMetrics()
-
Uses of Metric in io.opencensus.metrics.export
Subclasses of Metric in io.opencensus.metrics.export Modifier and Type Class Description (package private) class
AutoValue_Metric
Methods in io.opencensus.metrics.export that return Metric Modifier and Type Method Description static Metric
Metric. create(MetricDescriptor metricDescriptor, java.util.List<TimeSeries> timeSeriesList)
Creates aMetric
.private static Metric
Metric. createInternal(MetricDescriptor metricDescriptor, java.util.List<TimeSeries> timeSeriesList)
Creates aMetric
.static Metric
Metric. createWithOneTimeSeries(MetricDescriptor metricDescriptor, TimeSeries timeSeries)
Creates aMetric
.Methods in io.opencensus.metrics.export that return types with arguments of type Metric Modifier and Type Method Description abstract java.util.Collection<Metric>
MetricProducer. getMetrics()
Returns a collection of producedMetric
s to be exported.
-