diff options
author | Valery Piashchynski <[email protected]> | 2020-11-13 17:43:20 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-11-13 17:43:20 +0300 |
commit | 9fd0b28d3a6a60b5e08af03bd86bcef042152e1c (patch) | |
tree | 2e925c736eb8cf3b27995db0882d06557432925f /plugins/metrics/plugin.go | |
parent | 99b6012400ab407cfcb04aab833640af565d550d (diff) |
golangci linters warnings fix
Diffstat (limited to 'plugins/metrics/plugin.go')
-rw-r--r-- | plugins/metrics/plugin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/metrics/plugin.go b/plugins/metrics/plugin.go index 8e87029a..ff075bc6 100644 --- a/plugins/metrics/plugin.go +++ b/plugins/metrics/plugin.go @@ -37,7 +37,7 @@ type Plugin struct { log log.Logger mu sync.Mutex // all receivers are pointers http *http.Server - collectors sync.Map //[]statsProvider + collectors sync.Map // all receivers are pointers registry *prometheus.Registry } |