Skip to content

Commit

Permalink
fix mssql metric name type
Browse files Browse the repository at this point in the history
found that I had one metric with an extra `s` in `_genstatss_`, making it
inconsistent with it's siblings.
  • Loading branch information
Steve Zook committed Aug 3, 2018
1 parent 6fd78b1 commit 6dee4db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collector/mssql.go
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@ func NewMSSQLCollector() (Collector, error) {
nil,
),
Processesblocked: prometheus.NewDesc(
prometheus.BuildFQName(Namespace, subsystem, "genstatss_blocked_processes"),
prometheus.BuildFQName(Namespace, subsystem, "genstats_blocked_processes"),
"(GeneralStatistics.Processesblocked)",
[]string{"instance"},
nil,
Expand Down

0 comments on commit 6dee4db

Please sign in to comment.