Home
last modified time | relevance | path

Searched defs:labelKeys (Results 1 – 18 of 18) sorted by relevance

/external/opencensus-java/api/src/main/java/io/opencensus/metrics/
DMetricRegistry.java49 String name, String description, String unit, List<LabelKey> labelKeys); in addLongGauge()
66 String name, String description, String unit, List<LabelKey> labelKeys); in addDoubleGauge()
83 String name, String description, String unit, List<LabelKey> labelKeys); in addDerivedLongGauge()
100 String name, String description, String unit, List<LabelKey> labelKeys); in addDerivedDoubleGauge()
110 String name, String description, String unit, List<LabelKey> labelKeys) { in addLongGauge()
122 String name, String description, String unit, List<LabelKey> labelKeys) { in addDoubleGauge()
134 String name, String description, String unit, List<LabelKey> labelKeys) { in addDerivedLongGauge()
146 String name, String description, String unit, List<LabelKey> labelKeys) { in addDerivedDoubleGauge()
DDerivedDoubleGauge.java110 String name, String description, String unit, List<LabelKey> labelKeys) { in newNoopDerivedDoubleGauge()
119 String name, String description, String unit, List<LabelKey> labelKeys) { in create()
124 NoopDerivedDoubleGauge(String name, String description, String unit, List<LabelKey> labelKeys) { in NoopDerivedDoubleGauge()
DDerivedLongGauge.java108 String name, String description, String unit, List<LabelKey> labelKeys) { in newNoopDerivedLongGauge()
117 String name, String description, String unit, List<LabelKey> labelKeys) { in create()
122 NoopDerivedLongGauge(String name, String description, String unit, List<LabelKey> labelKeys) { in NoopDerivedLongGauge()
DLongGauge.java129 String name, String description, String unit, List<LabelKey> labelKeys) { in newNoopLongGauge()
162 String name, String description, String unit, List<LabelKey> labelKeys) { in create()
167 NoopLongGauge(String name, String description, String unit, List<LabelKey> labelKeys) { in NoopLongGauge()
DDoubleGauge.java132 String name, String description, String unit, List<LabelKey> labelKeys) { in newNoopDoubleGauge()
165 String name, String description, String unit, List<LabelKey> labelKeys) { in create()
170 NoopDoubleGauge(String name, String description, String unit, List<LabelKey> labelKeys) { in NoopDoubleGauge()
/external/opencensus-java/api/src/test/java/io/opencensus/metrics/
DMetricRegistryTest.java77 List<LabelKey> labelKeys = Collections.singletonList(null); in noopAddLongGauge_WithNullElement() local
113 List<LabelKey> labelKeys = Collections.singletonList(null); in noopAddDoubleGauge_WithNullElement() local
149 List<LabelKey> labelKeys = Collections.singletonList(null); in noopAddDerivedLongGauge_WithNullElement() local
185 List<LabelKey> labelKeys = Collections.singletonList(null); in noopAddDerivedDoubleGauge_WithNullElement() local
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/metrics/
DMetricRegistryImpl.java50 String name, String description, String unit, List<LabelKey> labelKeys) { in addLongGauge()
65 String name, String description, String unit, List<LabelKey> labelKeys) { in addDoubleGauge()
80 String name, String description, String unit, List<LabelKey> labelKeys) { in addDerivedLongGauge()
95 String name, String description, String unit, List<LabelKey> labelKeys) { in addDerivedDoubleGauge()
DDerivedDoubleGaugeImpl.java54 DerivedDoubleGaugeImpl(String name, String description, String unit, List<LabelKey> labelKeys) { in DerivedDoubleGaugeImpl()
DDerivedLongGaugeImpl.java54 DerivedLongGaugeImpl(String name, String description, String unit, List<LabelKey> labelKeys) { in DerivedLongGaugeImpl()
DLongGaugeImpl.java52 LongGaugeImpl(String name, String description, String unit, List<LabelKey> labelKeys) { in LongGaugeImpl()
DDoubleGaugeImpl.java52 DoubleGaugeImpl(String name, String description, String unit, List<LabelKey> labelKeys) { in DoubleGaugeImpl()
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/metrics/
DMetricRegistryImplTest.java122 List<LabelKey> labelKeys = Collections.singletonList(null); in addLongGauge_WithNullElement() local
158 List<LabelKey> labelKeys = Collections.singletonList(null); in addDoubleGauge_WithNullElement() local
194 List<LabelKey> labelKeys = Collections.singletonList(null); in addDerivedLongGauge_WithNullElement() local
230 List<LabelKey> labelKeys = Collections.singletonList(null); in addDerivedDoubleGauge_WithNullElement() local
DLongGaugeImplTest.java78 List<LabelKey> labelKeys = in getOrCreateTimeSeries_WithNullElement() local
194 List<LabelKey> labelKeys = in setDefaultLabelValues() local
253 List<LabelKey> labelKeys = in testEquals() local
DDoubleGaugeImplTest.java78 List<LabelKey> labelKeys = in getOrCreateTimeSeries_WithNullElement() local
199 List<LabelKey> labelKeys = in setDefaultLabelValues() local
258 List<LabelKey> labelKeys = in testEquals() local
DDerivedLongGaugeImplTest.java105 List<LabelKey> labelKeys = in createTimeSeries_WithNullElement() local
DDerivedDoubleGaugeImplTest.java103 List<LabelKey> labelKeys = in createTimeSeries_WithNullElement() local
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
DMetricUtils.java48 List<LabelKey> labelKeys = new ArrayList<LabelKey>(); in viewToMetricDescriptor() local
/external/opencensus-java/api/src/main/java/io/opencensus/metrics/export/
DMetricDescriptor.java52 String name, String description, String unit, Type type, List<LabelKey> labelKeys) { in create()