Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/alertmanager/multitenant.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const (
var (
totalConfigs = prometheus.NewGauge(prometheus.GaugeOpts{
Namespace: "cortex",
Name: "alertmanager_configs_total",
Name: "alertmanager_configs",
Help: "How many configs the multitenant alertmanager knows about.",
})
statusTemplate *template.Template
Expand Down
4 changes: 2 additions & 2 deletions pkg/ruler/scheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ const (
var (
totalConfigs = promauto.NewGauge(prometheus.GaugeOpts{
Namespace: "cortex",
Name: "scheduler_configs_total",
Name: "scheduler_configs",
Help: "How many configs the scheduler knows about.",
})
totalRuleGroups = promauto.NewGauge(prometheus.GaugeOpts{
Namespace: "cortex",
Name: "scheduler_groups_total",
Name: "scheduler_groups",
Help: "How many rule groups the scheduler is currently evaluating",
})
configUpdates = promauto.NewCounter(prometheus.CounterOpts{
Expand Down