Home
last modified time | relevance | path

Searched refs:labelKeysSize (Results 1 – 8 of 8) sorted by relevance

/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/metrics/
DLongGaugeImpl.java49 private final int labelKeysSize; field in LongGaugeImpl
53 labelKeysSize = labelKeys.size(); in LongGaugeImpl()
58 defaultLabelValues = new ArrayList<LabelValue>(labelKeysSize); in LongGaugeImpl()
59 for (int i = 0; i < labelKeysSize; i++) { in LongGaugeImpl()
114 checkArgument(labelKeysSize == labelValues.size(), "Incorrect number of labels."); in registerTimeSeries()
DDoubleGaugeImpl.java49 private final int labelKeysSize; field in DoubleGaugeImpl
53 labelKeysSize = labelKeys.size(); in DoubleGaugeImpl()
58 defaultLabelValues = new ArrayList<LabelValue>(labelKeysSize); in DoubleGaugeImpl()
59 for (int i = 0; i < labelKeysSize; i++) { in DoubleGaugeImpl()
114 checkArgument(labelKeysSize == labelValues.size(), "Incorrect number of labels."); in registerTimeSeries()
DDerivedDoubleGaugeImpl.java48 private final int labelKeysSize; field in DerivedDoubleGaugeImpl
55 labelKeysSize = labelKeys.size(); in DerivedDoubleGaugeImpl()
68 checkArgument(labelKeysSize == labelValues.size(), "Incorrect number of labels."); in createTimeSeries()
DDerivedLongGaugeImpl.java48 private final int labelKeysSize; field in DerivedLongGaugeImpl
55 labelKeysSize = labelKeys.size(); in DerivedLongGaugeImpl()
66 checkArgument(labelKeysSize == labelValues.size(), "Incorrect number of labels."); in createTimeSeries()
/external/opencensus-java/api/src/main/java/io/opencensus/metrics/
DLongGauge.java159 private final int labelKeysSize; field in LongGauge.NoopLongGauge
168 labelKeysSize = labelKeys.size(); in NoopLongGauge()
175 Utils.checkArgument(labelKeysSize == labelValues.size(), "Incorrect number of labels."); in getOrCreateTimeSeries()
DDerivedDoubleGauge.java116 private final int labelKeysSize; field in DerivedDoubleGauge.NoopDerivedDoubleGauge
130 labelKeysSize = labelKeys.size(); in NoopDerivedDoubleGauge()
140 Utils.checkArgument(labelKeysSize == labelValues.size(), "Incorrect number of labels."); in createTimeSeries()
DDoubleGauge.java162 private final int labelKeysSize; field in DoubleGauge.NoopDoubleGauge
176 labelKeysSize = labelKeys.size(); in NoopDoubleGauge()
183 Utils.checkArgument(labelKeysSize == labelValues.size(), "Incorrect number of labels."); in getOrCreateTimeSeries()
DDerivedLongGauge.java114 private final int labelKeysSize; field in DerivedLongGauge.NoopDerivedLongGauge
128 labelKeysSize = labelKeys.size(); in NoopDerivedLongGauge()
138 Utils.checkArgument(labelKeysSize == labelValues.size(), "Incorrect number of labels."); in createTimeSeries()