Uses of Class
io.opencensus.metrics.export.MetricDescriptor.Type
-
Packages that use MetricDescriptor.Type Package Description io.opencensus.exporter.stats.prometheus io.opencensus.implcore.stats io.opencensus.metrics.export -
-
Uses of MetricDescriptor.Type in io.opencensus.exporter.stats.prometheus
Methods in io.opencensus.exporter.stats.prometheus with parameters of type MetricDescriptor.Type Modifier and Type Method Description (package private) static io.prometheus.client.Collector.Type
PrometheusExportUtils. getType(MetricDescriptor.Type type)
-
Uses of MetricDescriptor.Type in io.opencensus.implcore.stats
Fields in io.opencensus.implcore.stats with type parameters of type MetricDescriptor.Type Modifier and Type Field Description private static Function<Aggregation,MetricDescriptor.Type>
MetricUtils. AGGREGATION_TYPE_DEFAULT_FUNCTION
private static Function<java.lang.Object,MetricDescriptor.Type>
MetricUtils. TYPE_CUMULATIVE_DISTRIBUTION_FUNCTION
private static Function<java.lang.Object,MetricDescriptor.Type>
MetricUtils. TYPE_CUMULATIVE_DOUBLE_FUNCTION
private static Function<java.lang.Object,MetricDescriptor.Type>
MetricUtils. TYPE_CUMULATIVE_INT64_FUNCTION
private static Function<java.lang.Object,MetricDescriptor.Type>
MetricUtils. TYPE_GAUGE_DOUBLE_FUNCTION
private static Function<java.lang.Object,MetricDescriptor.Type>
MetricUtils. TYPE_GAUGE_INT64_FUNCTION
private static Function<java.lang.Object,MetricDescriptor.Type>
MetricUtils. TYPE_UNRECOGNIZED_FUNCTION
Methods in io.opencensus.implcore.stats that return MetricDescriptor.Type Modifier and Type Method Description (package private) static MetricDescriptor.Type
MetricUtils. getType(Measure measure, Aggregation aggregation)
-
Uses of MetricDescriptor.Type in io.opencensus.metrics.export
Fields in io.opencensus.metrics.export declared as MetricDescriptor.Type Modifier and Type Field Description private MetricDescriptor.Type
AutoValue_MetricDescriptor. type
Methods in io.opencensus.metrics.export that return MetricDescriptor.Type Modifier and Type Method Description MetricDescriptor.Type
AutoValue_MetricDescriptor. getType()
abstract MetricDescriptor.Type
MetricDescriptor. getType()
Returns the type of this metric descriptor.static MetricDescriptor.Type
MetricDescriptor.Type. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MetricDescriptor.Type[]
MetricDescriptor.Type. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.opencensus.metrics.export with parameters of type MetricDescriptor.Type Modifier and Type Method Description private static void
Metric. checkTypeMatch(MetricDescriptor.Type type, java.util.List<TimeSeries> timeSeriesList)
static MetricDescriptor
MetricDescriptor. create(java.lang.String name, java.lang.String description, java.lang.String unit, MetricDescriptor.Type type, java.util.List<LabelKey> labelKeys)
Creates aMetricDescriptor
.Constructors in io.opencensus.metrics.export with parameters of type MetricDescriptor.Type Constructor Description AutoValue_MetricDescriptor(java.lang.String name, java.lang.String description, java.lang.String unit, MetricDescriptor.Type type, java.util.List<LabelKey> labelKeys)
-