From a3867b8dbf1e1bf4cc4e72f7aaa7f0f33f357f8b Mon Sep 17 00:00:00 2001 From: Michael Allen Date: Sun, 6 Sep 2020 18:25:21 -0700 Subject: [PATCH] Correct a typo where "perflib" was misspelled in a struct field tag Signed-off-by: Michael Allen --- collector/mssql.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collector/mssql.go b/collector/mssql.go index c942e5d8a..c0a64797d 100644 --- a/collector/mssql.go +++ b/collector/mssql.go @@ -3167,7 +3167,7 @@ func (c *MSSQLCollector) collectDatabases(ctx *ScrapeContext, ch chan<- promethe // - https://docs.microsoft.com/en-us/sql/relational-databases/performance-monitor/sql-server-general-statistics-object type mssqlGeneralStatistics struct { ActiveTempTables float64 `perflib:"Active Temp Tables"` - ConnectionResetPersec float64 `perblib:"Connection Reset/sec"` + ConnectionResetPersec float64 `perflib:"Connection Reset/sec"` EventNotificationsDelayedDrop float64 `perflib:"Event Notifications Delayed Drop"` HTTPAuthenticatedRequests float64 `perflib:"HTTP Authenticated Requests"` LogicalConnections float64 `perflib:"Logical Connections"`