mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-27 05:32:27 -08:00
Clarify metric names around rule groups.
Make it clear they're about overall rule groups.
This commit is contained in:
parent
d7b3df5ae1
commit
aa370fa568
|
@ -67,18 +67,18 @@ var (
|
||||||
)
|
)
|
||||||
iterationDuration = prometheus.NewSummary(prometheus.SummaryOpts{
|
iterationDuration = prometheus.NewSummary(prometheus.SummaryOpts{
|
||||||
Namespace: namespace,
|
Namespace: namespace,
|
||||||
Name: "evaluator_duration_seconds",
|
Name: "rule_group_duration_seconds",
|
||||||
Help: "The duration of rule group evaluations.",
|
Help: "The duration of rule group evaluations.",
|
||||||
Objectives: map[float64]float64{0.01: 0.001, 0.05: 0.005, 0.5: 0.05, 0.90: 0.01, 0.99: 0.001},
|
Objectives: map[float64]float64{0.01: 0.001, 0.05: 0.005, 0.5: 0.05, 0.90: 0.01, 0.99: 0.001},
|
||||||
})
|
})
|
||||||
iterationsMissed = prometheus.NewCounter(prometheus.CounterOpts{
|
iterationsMissed = prometheus.NewCounter(prometheus.CounterOpts{
|
||||||
Namespace: namespace,
|
Namespace: namespace,
|
||||||
Name: "evaluator_iterations_missed_total",
|
Name: "rule_group_iterations_missed_total",
|
||||||
Help: "The total number of rule group evaluations missed due to slow rule group evaluation.",
|
Help: "The total number of rule group evaluations missed due to slow rule group evaluation.",
|
||||||
})
|
})
|
||||||
iterationsScheduled = prometheus.NewCounter(prometheus.CounterOpts{
|
iterationsScheduled = prometheus.NewCounter(prometheus.CounterOpts{
|
||||||
Namespace: namespace,
|
Namespace: namespace,
|
||||||
Name: "evaluator_iterations_total",
|
Name: "rule_group_iterations_total",
|
||||||
Help: "The total number of scheduled rule group evaluations, whether executed or missed.",
|
Help: "The total number of scheduled rule group evaluations, whether executed or missed.",
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue