|
@@ -9,29 +9,38 @@ func init() {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
var (
|
|
|
- M_Instance_Start Counter
|
|
|
|
|
- M_Page_Status_200 Counter
|
|
|
|
|
- M_Page_Status_500 Counter
|
|
|
|
|
- M_Page_Status_404 Counter
|
|
|
|
|
- M_Api_Status_500 Counter
|
|
|
|
|
- M_Api_Status_404 Counter
|
|
|
|
|
- M_Api_User_SignUpStarted Counter
|
|
|
|
|
- M_Api_User_SignUpCompleted Counter
|
|
|
|
|
- M_Api_User_SignUpInvite Counter
|
|
|
|
|
- M_Api_Dashboard_Save Timer
|
|
|
|
|
- M_Api_Dashboard_Get Timer
|
|
|
|
|
- M_Api_Dashboard_Search Timer
|
|
|
|
|
- M_Api_Admin_User_Create Counter
|
|
|
|
|
- M_Api_Login_Post Counter
|
|
|
|
|
- M_Api_Login_OAuth Counter
|
|
|
|
|
- M_Api_Org_Create Counter
|
|
|
|
|
- M_Api_Dashboard_Snapshot_Create Counter
|
|
|
|
|
- M_Api_Dashboard_Snapshot_External Counter
|
|
|
|
|
- M_Api_Dashboard_Snapshot_Get Counter
|
|
|
|
|
- M_Models_Dashboard_Insert Counter
|
|
|
|
|
|
|
+ M_Instance_Start Counter
|
|
|
|
|
+ M_Page_Status_200 Counter
|
|
|
|
|
+ M_Page_Status_500 Counter
|
|
|
|
|
+ M_Page_Status_404 Counter
|
|
|
|
|
+ M_Api_Status_500 Counter
|
|
|
|
|
+ M_Api_Status_404 Counter
|
|
|
|
|
+ M_Api_User_SignUpStarted Counter
|
|
|
|
|
+ M_Api_User_SignUpCompleted Counter
|
|
|
|
|
+ M_Api_User_SignUpInvite Counter
|
|
|
|
|
+ M_Api_Dashboard_Save Timer
|
|
|
|
|
+ M_Api_Dashboard_Get Timer
|
|
|
|
|
+ M_Api_Dashboard_Search Timer
|
|
|
|
|
+ M_Api_Admin_User_Create Counter
|
|
|
|
|
+ M_Api_Login_Post Counter
|
|
|
|
|
+ M_Api_Login_OAuth Counter
|
|
|
|
|
+ M_Api_Org_Create Counter
|
|
|
|
|
+ M_Api_Dashboard_Snapshot_Create Counter
|
|
|
|
|
+ M_Api_Dashboard_Snapshot_External Counter
|
|
|
|
|
+ M_Api_Dashboard_Snapshot_Get Counter
|
|
|
|
|
+ M_Models_Dashboard_Insert Counter
|
|
|
|
|
+ M_Alerting_Result_Critical Counter
|
|
|
|
|
+ M_Alerting_Result_Warning Counter
|
|
|
|
|
+ M_Alerting_Result_Info Counter
|
|
|
|
|
+ M_Alerting_Result_Ok Counter
|
|
|
|
|
+ M_Alerting_Active_Alerts Counter
|
|
|
|
|
+ M_Alerting_Notification_Sent_Slack Counter
|
|
|
|
|
+ M_Alerting_Notification_Sent_Email Counter
|
|
|
|
|
+ M_Alerting_Notification_Sent_Webhook Counter
|
|
|
|
|
|
|
|
// Timers
|
|
// Timers
|
|
|
M_DataSource_ProxyReq_Timer Timer
|
|
M_DataSource_ProxyReq_Timer Timer
|
|
|
|
|
+ M_Alerting_Exeuction_Time Timer
|
|
|
)
|
|
)
|
|
|
|
|
|
|
|
func initMetricVars(settings *MetricSettings) {
|
|
func initMetricVars(settings *MetricSettings) {
|
|
@@ -66,6 +75,16 @@ func initMetricVars(settings *MetricSettings) {
|
|
|
|
|
|
|
|
M_Models_Dashboard_Insert = RegCounter("models.dashboard.insert")
|
|
M_Models_Dashboard_Insert = RegCounter("models.dashboard.insert")
|
|
|
|
|
|
|
|
|
|
+ M_Alerting_Result_Critical = RegCounter("alerting.result", "severity", "critical")
|
|
|
|
|
+ M_Alerting_Result_Warning = RegCounter("alerting.result", "severity", "warning")
|
|
|
|
|
+ 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")
|
|
|
|
|
+
|
|
|
// Timers
|
|
// Timers
|
|
|
M_DataSource_ProxyReq_Timer = RegTimer("api.dataproxy.request.all")
|
|
M_DataSource_ProxyReq_Timer = RegTimer("api.dataproxy.request.all")
|
|
|
|
|
+ M_Alerting_Exeuction_Time = RegTimer("alerting.execution_time")
|
|
|
}
|
|
}
|