Skip to content

Commit

Permalink
Update memory warning to 768MB
Browse files Browse the repository at this point in the history
The instances have 1GB, so this is a better threshold.
  • Loading branch information
ethax-ross authored Nov 2, 2020
1 parent 067e660 commit 00a8c18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions monitoring/prometheus/alert.rules
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ groups:
annotations:
summary: Alert when max CPU utilization is over 70%.
- alert: HighMemory
expr: 'dotnet_total_memory_bytes > 256000000'
expr: 'dotnet_total_memory_bytes > 768000000'
labels:
severity: medium
annotations:
summary: Alert when max memory utilization is over 256MB.
summary: Alert when max memory utilization is over 768MB.
- alert: HighDatabaseConnections
expr: 'max(connections) > 75'
labels:
Expand Down

0 comments on commit 00a8c18

Please sign in to comment.