Skip to content

Commit

Permalink
feat: decrease the threshold for disk write queue
Browse files Browse the repository at this point in the history
  • Loading branch information
amalucelli committed Apr 28, 2020
1 parent fcc6cff commit fe5b7c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions prometheus/rules/couchbase.rules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@ groups:
annotations:
summary: '{{ $labels.bucket }}: cache miss rate is {{ $value | printf "%.2f" }}%'
- alert: CouchbaseHighDiskWriteQueue
expr: couchbase_bucket_stats_disk_write_queue > 1000000
for: 1s
expr: couchbase_bucket_stats_disk_write_queue > 200
for: 1m
labels:
severity: critical
severity: warning
annotations:
summary: '{{ $labels.bucket }}: disk write queue is big (millions of items)'
summary: '{{ $labels.bucket }}: disk write queue is big'
- alert: CouchbaseXDCRErroring
expr: couchbase_task_xdcr_errors > 0
for: 1m
Expand Down

0 comments on commit fe5b7c9

Please sign in to comment.