Uses of Class
io.opencensus.metrics.LabelValue
Packages that use LabelValue
Package
Description
This package describes the Metrics data model.
-
Uses of LabelValue in io.opencensus.implcore.metrics
Method parameters in io.opencensus.implcore.metrics with type arguments of type LabelValueModifier and TypeMethodDescription<T> voidDerivedDoubleCumulativeImpl.createTimeSeries(List<LabelValue> labelValues, T obj, ToDoubleFunction<T> function) <T> voidDerivedDoubleGaugeImpl.createTimeSeries(List<LabelValue> labelValues, T obj, ToDoubleFunction<T> function) <T> voidDerivedLongCumulativeImpl.createTimeSeries(List<LabelValue> labelValues, T obj, ToLongFunction<T> function) <T> voidDerivedLongGaugeImpl.createTimeSeries(List<LabelValue> labelValues, T obj, ToLongFunction<T> function) DoubleCumulativeImpl.getOrCreateTimeSeries(List<LabelValue> labelValues) DoubleGaugeImpl.getOrCreateTimeSeries(List<LabelValue> labelValues) LongCumulativeImpl.getOrCreateTimeSeries(List<LabelValue> labelValues) LongGaugeImpl.getOrCreateTimeSeries(List<LabelValue> labelValues) voidDerivedDoubleCumulativeImpl.removeTimeSeries(List<LabelValue> labelValues) voidDerivedDoubleGaugeImpl.removeTimeSeries(List<LabelValue> labelValues) voidDerivedLongCumulativeImpl.removeTimeSeries(List<LabelValue> labelValues) voidDerivedLongGaugeImpl.removeTimeSeries(List<LabelValue> labelValues) voidDoubleCumulativeImpl.removeTimeSeries(List<LabelValue> labelValues) voidDoubleGaugeImpl.removeTimeSeries(List<LabelValue> labelValues) voidLongCumulativeImpl.removeTimeSeries(List<LabelValue> labelValues) voidLongGaugeImpl.removeTimeSeries(List<LabelValue> labelValues) -
Uses of LabelValue in io.opencensus.metrics
Methods in io.opencensus.metrics that return LabelValueMethods in io.opencensus.metrics that return types with arguments of type LabelValueModifier and TypeMethodDescriptionabstract Map<LabelKey, LabelValue> MetricOptions.getConstantLabels()Returns the map of constant labels (they will be added to all the TimeSeries) for the Metric.Method parameters in io.opencensus.metrics with type arguments of type LabelValueModifier and TypeMethodDescriptionabstract <T> voidDerivedDoubleCumulative.createTimeSeries(List<LabelValue> labelValues, T obj, ToDoubleFunction<T> function) Creates aTimeSeries.abstract <T> voidDerivedDoubleGauge.createTimeSeries(List<LabelValue> labelValues, T obj, ToDoubleFunction<T> function) Creates aTimeSeries.abstract <T> voidDerivedLongCumulative.createTimeSeries(List<LabelValue> labelValues, T obj, ToLongFunction<T> function) Creates aTimeSeries.abstract <T> voidDerivedLongGauge.createTimeSeries(List<LabelValue> labelValues, T obj, ToLongFunction<T> function) Creates aTimeSeries.abstract DoubleCumulative.DoublePointDoubleCumulative.getOrCreateTimeSeries(List<LabelValue> labelValues) Creates aTimeSeriesand returns aDoublePointif the specifiedlabelValuesis not already associated with this cumulative, else returns an existingDoublePoint.abstract DoubleGauge.DoublePointDoubleGauge.getOrCreateTimeSeries(List<LabelValue> labelValues) Creates aTimeSeriesand returns aDoublePointif the specifiedlabelValuesis not already associated with this gauge, else returns an existingDoublePoint.abstract LongCumulative.LongPointLongCumulative.getOrCreateTimeSeries(List<LabelValue> labelValues) Creates aTimeSeriesand returns aLongPointif the specifiedlabelValuesis not already associated with this cumulative, else returns an existingLongPoint.abstract LongGauge.LongPointLongGauge.getOrCreateTimeSeries(List<LabelValue> labelValues) Creates aTimeSeriesand returns aLongPointif the specifiedlabelValuesis not already associated with this gauge, else returns an existingLongPoint.abstract voidDerivedDoubleCumulative.removeTimeSeries(List<LabelValue> labelValues) Removes theTimeSeriesfrom the cumulative metric, if it is present.abstract voidDerivedDoubleGauge.removeTimeSeries(List<LabelValue> labelValues) Removes theTimeSeriesfrom the gauge metric, if it is present.abstract voidDerivedLongCumulative.removeTimeSeries(List<LabelValue> labelValues) Removes theTimeSeriesfrom the cumulative metric, if it is present.abstract voidDerivedLongGauge.removeTimeSeries(List<LabelValue> labelValues) Removes theTimeSeriesfrom the gauge metric, if it is present.abstract voidDoubleCumulative.removeTimeSeries(List<LabelValue> labelValues) Removes theTimeSeriesfrom the cumulative metric, if it is present. i.e. references to previousDoublePointobjects are invalid (not part of the metric).abstract voidDoubleGauge.removeTimeSeries(List<LabelValue> labelValues) Removes theTimeSeriesfrom the gauge metric, if it is present. i.e. references to previousDoublePointobjects are invalid (not part of the metric).abstract voidLongCumulative.removeTimeSeries(List<LabelValue> labelValues) Removes theTimeSeriesfrom the cumulative metric, if it is present. i.e. references to previousLongPointobjects are invalid (not part of the metric).abstract voidLongGauge.removeTimeSeries(List<LabelValue> labelValues) Removes theTimeSeriesfrom the gauge metric, if it is present. i.e. references to previousLongPointobjects are invalid (not part of the metric).abstract MetricOptions.BuilderMetricOptions.Builder.setConstantLabels(Map<LabelKey, LabelValue> constantLabels) Sets the map of constant labels (they will be added to all the TimeSeries) for the Metric. -
Uses of LabelValue in io.opencensus.metrics.export
Methods in io.opencensus.metrics.export that return types with arguments of type LabelValueModifier and TypeMethodDescriptionabstract List<LabelValue> TimeSeries.getLabelValues()Returns the set ofLabelValues that uniquely identify thisTimeSeries.Method parameters in io.opencensus.metrics.export with type arguments of type LabelValueModifier and TypeMethodDescriptionstatic TimeSeriesTimeSeries.create(List<LabelValue> labelValues) Creates aTimeSerieswith empty(or no) points.static TimeSeriesCreates aTimeSeries.static TimeSeriesTimeSeries.createWithOnePoint(List<LabelValue> labelValues, Point point, Timestamp startTimestamp) Creates aTimeSeries.