@@ -11,21 +11,21 @@ var (
11
11
Subsystem : "reconciler" ,
12
12
Name : "reconciles" ,
13
13
Help : "reconciles per Grafana instance" ,
14
- }, []string {"instance_name" })
14
+ }, []string {"instance_namespace" , " instance_name" })
15
15
16
16
GrafanaFailedReconciles = prometheus .NewCounterVec (prometheus.CounterOpts {
17
17
Namespace : "grafana_operator" ,
18
18
Subsystem : "reconciler" ,
19
19
Name : "failed_reconciles" ,
20
20
Help : "failed reconciles per Grafana instance and stage" ,
21
- }, []string {"instance_name" , "stage" })
21
+ }, []string {"instance_namespace" , " instance_name" , "stage" })
22
22
23
23
GrafanaApiRequests = prometheus .NewCounterVec (prometheus.CounterOpts {
24
24
Namespace : "grafana_operator" ,
25
25
Subsystem : "grafana_api" ,
26
26
Name : "requests" ,
27
27
Help : "requests against the grafana api per instance" ,
28
- }, []string {"instance_name" , "method" , "status" })
28
+ }, []string {"instance_namespace" , " instance_name" , "method" , "status" })
29
29
30
30
// Deprecated: will be removed in a future version of the operator. Use
31
31
// ContentUrlRequests instead, which handles more types of resources that
0 commit comments