Enum MetricType
Defines the type of a Prometheus metric.
public enum MetricType
Fields
Counter = 0A cumulative counter that only increases (e.g., total requests processed).
Gauge = 1A gauge that can go up or down (e.g., current connections).
Histogram = 2A histogram for measuring distributions (e.g., request latency).