Enum Class MetricType
- All Implemented Interfaces:
Serializable
,Comparable<MetricType>
,Constable
Metric type enum to define the type of metrics Venice supports via OpenTelemetry
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFor Counter: A simple counter that can be added to.Use Histogram to get percentiles/min/max/count/sum and other aggregates: can be configured to be exponential or explicit bucket
checkVeniceMetricsConfig.Builder.extractAndSetOtelConfigs(java.util.Map<java.lang.String, java.lang.String>)
for more detailsTo get min/max/count/sum aggregation without the memory overhead to calculate percentiles, use Otel Explicit bucket Histogram but without buckets . -
Method Summary
Modifier and TypeMethodDescriptionstatic MetricType
Returns the enum constant of this class with the specified name.static MetricType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HISTOGRAM
Use Histogram to get percentiles/min/max/count/sum and other aggregates: can be configured to be exponential or explicit bucket
checkVeniceMetricsConfig.Builder.extractAndSetOtelConfigs(java.util.Map<java.lang.String, java.lang.String>)
for more details -
MIN_MAX_COUNT_SUM_AGGREGATIONS
To get min/max/count/sum aggregation without the memory overhead to calculate percentiles, use Otel Explicit bucket Histogram but without buckets . checkVeniceOpenTelemetryMetricsRepository.createHistogram(com.linkedin.venice.stats.metrics.MetricEntity)
andVeniceOpenTelemetryMetricsRepository.setExponentialHistogramAggregation(io.opentelemetry.sdk.metrics.SdkMeterProviderBuilder, com.linkedin.venice.stats.VeniceMetricsConfig)
for more details -
COUNTER
For Counter: A simple counter that can be added to.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-