This repository was archived by the owner on Apr 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 10
10
* [ BUGFIX] Honor configured ` per_instance_label ` in all panels. #239
11
11
* [ BUGFIX] ` CortexRequestLatency ` alert now ignores long-running requests on query-scheduler. #242
12
12
* [ BUGFIX] Honor configured ` job_names ` in the "Memory (go heap inuse)" panel. #247
13
- * [ BUGFIX] Fixed ingester "Disk Space Utilization" to include any ` ingester.* ` PV. #248
13
+ * [ BUGFIX] Fixed ingester "Disk Space Utilization" to include any ` ingester.* ` PV. #249
14
+ * [ BUGFIX] Fixed ingester alerts to include any ` ingester.* ` job. #252
14
15
15
16
## 1.6.0 / 2021-01-05
16
17
Original file line number Diff line number Diff line change 198
198
{
199
199
alert: 'CortexIngesterRestarts' ,
200
200
expr: |||
201
- changes(process_start_time_seconds{job=~".+(cortex|ingester)"}[30m]) > 1
201
+ changes(process_start_time_seconds{job=~".+(cortex|ingester.* )"}[30m]) > 1
202
202
||| ,
203
203
labels: {
204
204
severity: 'critical' ,
243
243
{
244
244
alert: 'CortexMemoryMapAreasTooHigh' ,
245
245
expr: |||
246
- process_memory_map_areas{job=~".+(cortex|ingester|store-gateway)"} / process_memory_map_areas_limit{job=~".+(cortex|ingester|store-gateway)"} > 0.8
246
+ process_memory_map_areas{job=~".+(cortex|ingester.* |store-gateway)"} / process_memory_map_areas_limit{job=~".+(cortex|ingester.* |store-gateway)"} > 0.8
247
247
||| ,
248
248
'for' : '5m' ,
249
249
labels: {
502
502
expr: |||
503
503
memberlist_client_cluster_members_count
504
504
!= on (%s) group_left
505
- sum by (%s) (up{job=~".+/(distributor|ingester|querier|cortex|ruler)"})
505
+ sum by (%s) (up{job=~".+/(distributor|ingester.* |querier|cortex|ruler)"})
506
506
||| % [$._config.alert_aggregation_labels, $._config.alert_aggregation_labels],
507
507
'for' : '5m' ,
508
508
labels: {
Original file line number Diff line number Diff line change 9
9
alert: 'CortexIngesterHasNotShippedBlocks' ,
10
10
'for' : '15m' ,
11
11
expr: |||
12
- (min by(namespace, instance) (time() - thanos_objstore_bucket_last_successful_upload_time{job=~".+/ingester"}) > 60 * 60 * 4)
12
+ (min by(namespace, instance) (time() - thanos_objstore_bucket_last_successful_upload_time{job=~".+/ingester.* "}) > 60 * 60 * 4)
13
13
and
14
- (max by(namespace, instance) (thanos_objstore_bucket_last_successful_upload_time{job=~".+/ingester"}) > 0)
14
+ (max by(namespace, instance) (thanos_objstore_bucket_last_successful_upload_time{job=~".+/ingester.* "}) > 0)
15
15
and
16
16
(max by(namespace, instance) (rate(cortex_ingester_ingested_samples_total[4h])) > 0)
17
17
||| ,
28
28
alert: 'CortexIngesterHasNotShippedBlocksSinceStart' ,
29
29
'for' : '4h' ,
30
30
expr: |||
31
- (max by(namespace, instance) (thanos_objstore_bucket_last_successful_upload_time{job=~".+/ingester"}) == 0)
31
+ (max by(namespace, instance) (thanos_objstore_bucket_last_successful_upload_time{job=~".+/ingester.* "}) == 0)
32
32
and
33
33
(max by(namespace, instance) (rate(cortex_ingester_ingested_samples_total[4h])) > 0)
34
34
||| ,
You can’t perform that action at this time.
0 commit comments