You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flagReg("counter-metric-count", "Number of counter metrics to serve.").Default("200").
105
106
IntVar(&cfg.CounterMetricCount)
106
-
flagReg("histogram-metric-count", "Number of explicit (classic) histogram metrics to serve.").Default("10").
107
+
flagReg("histogram-metric-count", "Number of explicit (classic) histogram metrics to serve. Use -histogram-metric-bucket-count to control number of buckets. Note that the overall number of series for a single classic histogram metric is equal to 2 (count and sum) + <histogram-metric-bucket-count> + 1 (+Inf bucket).").Default("10").
107
108
IntVar(&cfg.HistogramMetricCount)
108
-
flagReg("histogram-metric-bucket-count", "Number of explicit buckets (classic) histogram metrics.").Default("8").
flagReg("native-histogram-metric-count", "Number of native (exponential) histogram metrics to serve.").Default("0").
111
112
IntVar(&cfg.NativeHistogramMetricCount)
112
-
flagReg("summary-metric-count", "Number of summary metrics to serve.").Default("0").
113
+
flagReg("summary-metric-count", "Number of summary metrics to serve. Use -summary-metric-objective-count to control number of quantile objectives. Note that the overall number of series for a single summary metric is equal to 2 (count and sum) + <summary-metric-objective-count>.").Default("0").
113
114
IntVar(&cfg.SummaryMetricCount)
115
+
flagReg("summary-metric-objective-count", "Number of objectives in the summary metrics to serve.").Default("2").
116
+
IntVar(&cfg.SummaryObjectives)
114
117
115
118
flagReg("label-count", "Number of labels per-metric.").Default("10").
0 commit comments