mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-03-05 10:06:35 +00:00
fix mssql metric name type
found that I had one metric with an extra `s` in `_genstatss_`, making it inconsistent with it's siblings.
This commit is contained in:
@@ -997,7 +997,7 @@ func NewMSSQLCollector() (Collector, error) {
|
|||||||
nil,
|
nil,
|
||||||
),
|
),
|
||||||
Processesblocked: prometheus.NewDesc(
|
Processesblocked: prometheus.NewDesc(
|
||||||
prometheus.BuildFQName(Namespace, subsystem, "genstatss_blocked_processes"),
|
prometheus.BuildFQName(Namespace, subsystem, "genstats_blocked_processes"),
|
||||||
"(GeneralStatistics.Processesblocked)",
|
"(GeneralStatistics.Processesblocked)",
|
||||||
[]string{"instance"},
|
[]string{"instance"},
|
||||||
nil,
|
nil,
|
||||||
|
|||||||
Reference in New Issue
Block a user