From e7613b8bc07d9f44f82fbe4a569fa644fc75f129 Mon Sep 17 00:00:00 2001 From: bergquist Date: Fri, 12 Aug 2016 08:15:53 +0200 Subject: [PATCH] fix(metrics): typo --- pkg/metrics/metrics.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/metrics/metrics.go b/pkg/metrics/metrics.go index f084a955d57..9477f2738b5 100644 --- a/pkg/metrics/metrics.go +++ b/pkg/metrics/metrics.go @@ -80,9 +80,9 @@ func initMetricVars(settings *MetricSettings) { M_Alerting_Result_Info = RegCounter("alerting.result", "severity", "info") M_Alerting_Result_Ok = RegCounter("alerting.result", "severity", "ok") M_Alerting_Active_Alerts = RegCounter("alerting.active_alerts") - M_Alerting_Notification_Sent_Slack = RegCounter("alerting.notifcations_sent", "type", "slack") - M_Alerting_Notification_Sent_Email = RegCounter("alerting.notifcations_sent", "type", "email") - M_Alerting_Notification_Sent_Webhook = RegCounter("alerting.notifcations_sent", "type", "webhook") + M_Alerting_Notification_Sent_Slack = RegCounter("alerting.notifications_sent", "type", "slack") + M_Alerting_Notification_Sent_Email = RegCounter("alerting.notifications_sent", "type", "email") + M_Alerting_Notification_Sent_Webhook = RegCounter("alerting.notifications_sent", "type", "webhook") // Timers M_DataSource_ProxyReq_Timer = RegTimer("api.dataproxy.request.all")