File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ exclusions:
17
17
- panel: "Keyspaces count"
18
18
- panel: "Repair jobs started"
19
19
- panel: "Repair jobs completed"
20
+ panel-datasource-rule:
21
+ reason: "Loki datasource variable is being named as loki_datasource now while linter expects 'datasource'"
20
22
template-datasource-rule:
21
23
reason: "Based on new convention we are using variable names prometheus_datasource and loki_datasource where as linter expects 'datasource'"
22
24
template-instance-rule:
Original file line number Diff line number Diff line change 115
115
{
116
116
alert: 'HighCpuUsage' ,
117
117
expr: |||
118
- jvm_process_cpu_load * 100 > %(alertsCriticalHighCpuUsage5m)s
118
+ jvm_process_cpu_load{job=~"integrations/apache-cassandra"} * 100 > %(alertsCriticalHighCpuUsage5m)s
119
119
||| % $._config,
120
120
'for' : '5m' ,
121
121
labels: {
133
133
{
134
134
alert: 'HighMemoryUsage' ,
135
135
expr: |||
136
- sum(jvm_memory_usage_used_bytes{area="Heap"}) / sum(jvm_physical_memory_size) * 100 > %(alertsCriticalHighMemoryUsage5m)s
136
+ sum(jvm_memory_usage_used_bytes{job=~"integrations/apache-cassandra", area="Heap"}) / sum(jvm_physical_memory_size{job=~"integrations/apache-cassandra"} ) * 100 > %(alertsCriticalHighMemoryUsage5m)s
137
137
||| % $._config,
138
138
'for' : '5m' ,
139
139
labels: {
You can’t perform that action at this time.
0 commit comments