Uses of Class
io.opencensus.stats.AggregationData
-
Packages that use AggregationData Package Description io.opencensus.contrib.zpages io.opencensus.implcore.stats io.opencensus.stats API for stats recording. -
-
Uses of AggregationData in io.opencensus.contrib.zpages
Methods in io.opencensus.contrib.zpages with parameters of type AggregationData Modifier and Type Method Description private static void
RpczZPageHandler. getStats(RpczZPageHandler.StatsSnapshot snapshot, AggregationData data, View view, ViewData.AggregationWindowData windowData)
Method parameters in io.opencensus.contrib.zpages with type arguments of type AggregationData Modifier and Type Method Description private static void
StatszZPageHandler. emitViewDataRow(View view, java.util.Map.Entry<java.util.List<TagValue>,AggregationData> entry, java.io.PrintWriter out, java.util.Formatter formatter)
-
Uses of AggregationData in io.opencensus.implcore.stats
Methods in io.opencensus.implcore.stats that return AggregationData Modifier and Type Method Description (package private) AggregationData
MutableAggregation.MutableCount. toAggregationData()
(package private) AggregationData
MutableAggregation.MutableDistribution. toAggregationData()
(package private) AggregationData
MutableAggregation.MutableLastValueDouble. toAggregationData()
(package private) AggregationData
MutableAggregation.MutableLastValueLong. toAggregationData()
(package private) AggregationData
MutableAggregation.MutableMean. toAggregationData()
(package private) AggregationData
MutableAggregation.MutableSumDouble. toAggregationData()
(package private) AggregationData
MutableAggregation.MutableSumLong. toAggregationData()
(package private) abstract AggregationData
MutableAggregation. toAggregationData()
Methods in io.opencensus.implcore.stats that return types with arguments of type AggregationData Modifier and Type Method Description private java.util.Map<java.util.List<TagValue>,AggregationData>
MutableViewData.IntervalMutableViewData. combineBucketsAndGetAggregationMap(Timestamp now)
(package private) static <T> java.util.Map<T,AggregationData>
RecordUtils. createAggregationMap(java.util.Map<T,MutableAggregation> tagValueAggregationMap, Measure measure)
-
Uses of AggregationData in io.opencensus.stats
Subclasses of AggregationData in io.opencensus.stats Modifier and Type Class Description static class
AggregationData.CountData
The count value of aggregatedMeasureValue
s.static class
AggregationData.DistributionData
The distribution stats of aggregatedMeasureValue
s.static class
AggregationData.LastValueDataDouble
The last value of aggregatedMeasureValueDouble
s.static class
AggregationData.LastValueDataLong
The last value of aggregatedMeasureValueLong
s.static class
AggregationData.MeanData
Deprecated.since 0.13, useAggregationData.DistributionData
instead.static class
AggregationData.SumDataDouble
The sum value of aggregatedMeasureValueDouble
s.static class
AggregationData.SumDataLong
The sum value of aggregatedMeasureValueLong
s.(package private) class
AutoValue_AggregationData_CountData
(package private) class
AutoValue_AggregationData_DistributionData
(package private) class
AutoValue_AggregationData_LastValueDataDouble
(package private) class
AutoValue_AggregationData_LastValueDataLong
(package private) class
AutoValue_AggregationData_MeanData
Deprecated.(package private) class
AutoValue_AggregationData_SumDataDouble
(package private) class
AutoValue_AggregationData_SumDataLong
Fields in io.opencensus.stats with type parameters of type AggregationData Modifier and Type Field Description private java.util.Map<java.util.List<TagValue>,AggregationData>
AutoValue_ViewData. aggregationMap
Methods in io.opencensus.stats that return types with arguments of type AggregationData Modifier and Type Method Description java.util.Map<java.util.List<TagValue>,AggregationData>
AutoValue_ViewData. getAggregationMap()
abstract java.util.Map<java.util.List<TagValue>,AggregationData>
ViewData. getAggregationMap()
TheAggregationData
grouped by combination of tag values, associated with thisViewData
.Methods in io.opencensus.stats with parameters of type AggregationData Modifier and Type Method Description private static void
ViewData. checkAggregation(Aggregation aggregation, AggregationData aggregationData, Measure measure)
private static java.lang.String
ViewData. createErrorMessageForAggregation(Aggregation aggregation, AggregationData aggregationData)
private static void
ViewData. throwIfAggregationMismatch(boolean isValid, Aggregation aggregation, AggregationData aggregationData)
Method parameters in io.opencensus.stats with type arguments of type AggregationData Modifier and Type Method Description static ViewData
ViewData. create(View view, java.util.Map<? extends java.util.List<TagValue>,? extends AggregationData> map, Timestamp start, Timestamp end)
Constructs a newViewData
.static ViewData
ViewData. create(View view, java.util.Map<? extends java.util.List<TagValue>,? extends AggregationData> map, ViewData.AggregationWindowData windowData)
Deprecated.in favor ofViewData.create(View, Map, Timestamp, Timestamp)
.private static ViewData
ViewData. createInternal(View view, java.util.Map<java.util.List<TagValue>,AggregationData> aggregationMap, ViewData.AggregationWindowData window, Timestamp start, Timestamp end)
Constructor parameters in io.opencensus.stats with type arguments of type AggregationData Constructor Description AutoValue_ViewData(View view, java.util.Map<java.util.List<TagValue>,AggregationData> aggregationMap, ViewData.AggregationWindowData windowData, Timestamp start, Timestamp end)
-