HomeSort by relevance Sort by last modified time
    Searched refs:LABEL_VALUES (Results 1 - 10 of 10) sorted by null

  /external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/metrics/
DerivedLongGaugeImplTest.java 52 private static final List<LabelValue> LABEL_VALUES =
130 derivedLongGauge.createTimeSeries(LABEL_VALUES, null, null);
135 derivedLongGauge.createTimeSeries(LABEL_VALUES, new QueueManager(), queueManagerFunction);
144 LABEL_VALUES, Point.create(Value.longValue(2), TEST_TIME), null)));
149 derivedLongGauge.createTimeSeries(LABEL_VALUES, null, negativeLongFunction);
158 LABEL_VALUES, Point.create(Value.longValue(-200), TEST_TIME), null)));
163 derivedLongGauge.createTimeSeries(LABEL_VALUES, null, longFunction);
169 derivedLongGauge.removeTimeSeries(LABEL_VALUES);
182 derivedLongGauge.createTimeSeries(LABEL_VALUES, null, longFunction);
188 LABEL_VALUES, Point.create(Value.longValue(5), TEST_TIME), null))
    [all...]
DerivedDoubleGaugeImplTest.java 52 private static final List<LabelValue> LABEL_VALUES =
126 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, null, null);
131 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, new QueueManager(), queueManagerFunction);
139 LABEL_VALUES, Point.create(Value.doubleValue(2.5), TEST_TIME), null)));
144 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, new QueueManager(), queueManagerFunction);
147 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, null, queueManagerFunction);
152 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, null, negativeDoubleFunction);
160 LABEL_VALUES, Point.create(Value.doubleValue(-200.5), TEST_TIME), null)));
165 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, null, doubleFunction);
170 derivedDoubleGauge.removeTimeSeries(LABEL_VALUES);
    [all...]
MetricRegistryImplTest.java 61 private static final List<LabelValue> LABEL_VALUES =
239 longGauge.getOrCreateTimeSeries(LABEL_VALUES);
248 LABEL_VALUES, Point.create(Value.longValue(0), TEST_TIME), null)));
254 doubleGauge.getOrCreateTimeSeries(LABEL_VALUES);
262 LABEL_VALUES, Point.create(Value.doubleValue(0.0), TEST_TIME), null)));
269 derivedLongGauge.createTimeSeries(LABEL_VALUES, null, longFunction);
277 LABEL_VALUES, Point.create(Value.longValue(5), TEST_TIME), null)));
284 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, null, doubleFunction);
292 LABEL_VALUES, Point.create(Value.doubleValue(5.0), TEST_TIME), null)));
315 LongPoint longPoint = longGauge.getOrCreateTimeSeries(LABEL_VALUES);
    [all...]
DoubleGaugeImplTest.java 54 private static final List<LabelValue> LABEL_VALUES =
101 DoublePoint point = doubleGauge.getOrCreateTimeSeries(LABEL_VALUES);
103 DoublePoint point1 = doubleGauge.getOrCreateTimeSeries(LABEL_VALUES);
114 LABEL_VALUES, Point.create(Value.doubleValue(500), TEST_TIME), null))));
120 DoublePoint point = doubleGauge.getOrCreateTimeSeries(LABEL_VALUES);
161 doubleGauge.getOrCreateTimeSeries(LABEL_VALUES);
168 LABEL_VALUES, Point.create(Value.doubleValue(0), TEST_TIME), null))));
170 doubleGauge.removeTimeSeries(LABEL_VALUES);
183 DoublePoint doublePoint = doubleGauge.getOrCreateTimeSeries(LABEL_VALUES);
216 DoublePoint doublePoint = doubleGauge.getOrCreateTimeSeries(LABEL_VALUES);
    [all...]
LongGaugeImplTest.java 54 private static final List<LabelValue> LABEL_VALUES =
101 LongPoint point = longGaugeMetric.getOrCreateTimeSeries(LABEL_VALUES);
103 LongPoint point1 = longGaugeMetric.getOrCreateTimeSeries(LABEL_VALUES);
113 LABEL_VALUES, Point.create(Value.longValue(500), TEST_TIME), null)));
119 LongPoint point = longGaugeMetric.getOrCreateTimeSeries(LABEL_VALUES);
157 longGaugeMetric.getOrCreateTimeSeries(LABEL_VALUES);
163 LABEL_VALUES, Point.create(Value.longValue(0), TEST_TIME), null)));
165 longGaugeMetric.removeTimeSeries(LABEL_VALUES);
178 LongPoint longPoint = longGaugeMetric.getOrCreateTimeSeries(LABEL_VALUES);
211 LongPoint longPoint = longGaugeMetric.getOrCreateTimeSeries(LABEL_VALUES);
    [all...]
  /external/opencensus-java/api/src/test/java/io/opencensus/metrics/
DerivedDoubleGaugeTest.java 40 private static final List<LabelValue> LABEL_VALUES =
80 derivedDoubleGauge.createTimeSeries(LABEL_VALUES, null, null);
DerivedLongGaugeTest.java 40 private static final List<LabelValue> LABEL_VALUES =
80 derivedLongGauge.createTimeSeries(LABEL_VALUES, null, null);
DoubleGaugeTest.java 40 private static final List<LabelValue> LABEL_VALUES =
86 .isSameAs(doubleGauge.getOrCreateTimeSeries(LABEL_VALUES));
LongGaugeTest.java 40 private static final List<LabelValue> LABEL_VALUES =
85 .isSameAs(longGauge.getOrCreateTimeSeries(LABEL_VALUES));
MetricRegistryTest.java 42 private static final List<LabelValue> LABEL_VALUES =
196 .isSameAs(longGauge.getOrCreateTimeSeries(LABEL_VALUES));
201 .isSameAs(doubleGauge.getOrCreateTimeSeries(LABEL_VALUES));

Completed in 440 milliseconds