Home
last modified time | relevance | path

Searched refs:derivedDoubleGauge (Results 1 – 4 of 4) sorted by relevance

/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/metrics/
DDerivedDoubleGaugeImplTest.java62 private final DerivedDoubleGaugeImpl derivedDoubleGauge = field in DerivedDoubleGaugeImplTest
98 derivedDoubleGauge.createTimeSeries(null, null, doubleFunction); in createTimeSeries_WithNullLabelValues()
106 DerivedDoubleGaugeImpl derivedDoubleGauge = in createTimeSeries_WithNullElement() local
110 derivedDoubleGauge.createTimeSeries(labelValues, null, doubleFunction); in createTimeSeries_WithNullElement()
119 derivedDoubleGauge.createTimeSeries(labelValues, null, doubleFunction); in createTimeSeries_WithInvalidLabelSize()
126 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, null, null); in createTimeSeries_WithNullFunction()
131 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, new QueueManager(), queueManagerFunction); in createTimeSeries_WithObjFunction()
132 Metric metric = derivedDoubleGauge.getMetric(testClock); in createTimeSeries_WithObjFunction()
144 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, new QueueManager(), queueManagerFunction); in createTimeSeries_WithSameLabel()
147 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, null, queueManagerFunction); in createTimeSeries_WithSameLabel()
[all …]
DMetricRegistryImplTest.java282 DerivedDoubleGauge derivedDoubleGauge = in addDerivedDoubleGauge_GetMetrics() local
284 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, null, doubleFunction); in addDerivedDoubleGauge_GetMetrics()
323 DerivedDoubleGauge derivedDoubleGauge = in getMetrics() local
325 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, null, doubleFunction); in getMetrics()
/external/opencensus-java/api/src/test/java/io/opencensus/metrics/
DDerivedDoubleGaugeTest.java44 private final DerivedDoubleGauge derivedDoubleGauge = field in DerivedDoubleGaugeTest
58 derivedDoubleGauge.createTimeSeries(null, null, doubleFunction); in noopCreateTimeSeries_WithNullLabelValues()
66 derivedDoubleGauge.createTimeSeries(labelValues, null, doubleFunction); in noopCreateTimeSeries_WithNullElement()
73 derivedDoubleGauge.createTimeSeries(EMPTY_LABEL_VALUES, null, doubleFunction); in noopCreateTimeSeries_WithInvalidLabelSize()
80 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, null, null); in createTimeSeries_WithNullFunction()
87 derivedDoubleGauge.removeTimeSeries(null); in noopRemoveTimeSeries_WithNullLabelValues()
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/metrics/
DMetricRegistryImpl.java98 DerivedDoubleGaugeImpl derivedDoubleGauge = in addDerivedDoubleGauge() local
104 registeredMeters.registerMeter(name, derivedDoubleGauge); in addDerivedDoubleGauge()
105 return derivedDoubleGauge; in addDerivedDoubleGauge()