Searched refs:tagValueAggregationMap (Results 1 – 3 of 3) sorted by relevance
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/ |
D | IntervalBucket.java | 44 private final Map<List</*@Nullable*/ TagValue>, MutableAggregation> tagValueAggregationMap = field in IntervalBucket 56 return tagValueAggregationMap; in getTagValueAggregationMap() 69 if (!tagValueAggregationMap.containsKey(tagValues)) { in record() 70 tagValueAggregationMap.put( in record() 73 tagValueAggregationMap.get(tagValues).add(value, attachments, timestamp); in record() 93 tagValueAggregationMap.clear();
|
D | MutableViewData.java | 111 private final Map<List</*@Nullable*/ TagValue>, MutableAggregation> tagValueAggregationMap = field in MutableViewData.CumulativeMutableViewData 139 tagValueAggregationMap.entrySet()) { in toMetric() 152 if (!tagValueAggregationMap.containsKey(tagValues)) { in record() 153 tagValueAggregationMap.put( in record() 157 tagValueAggregationMap.get(tagValues).add(value, attachments, timestamp); in record() 165 createAggregationMap(tagValueAggregationMap, super.view.getMeasure()), in toViewData() 178 tagValueAggregationMap.clear(); in clearStats()
|
D | RecordUtils.java | 131 Map<T, MutableAggregation> tagValueAggregationMap, Measure measure) { 133 for (Entry<T, MutableAggregation> entry : tagValueAggregationMap.entrySet()) {
|