Skip to content

Commit

Permalink
fix(monitoring): increasing CPU alarm threshold (#539)
Browse files Browse the repository at this point in the history
* fix(monitoring): increasing CPU alarm threshold

* fix: adjusting periods
  • Loading branch information
geekbrother authored Feb 28, 2024
1 parent e3cb34e commit 9481d93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/monitoring/panels/ecs/cpu.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ local overrides = defaults.overrides;
name = "RPC %s - High CPU usage" % vars.environment,
message = "RPC %s - High CPU usage" % vars.environment,
period = '15m',
frequency = '3m',
frequency = '5m',
noDataState = 'alerting',
notifications = vars.notifications,
alertRuleTags = {
Expand All @@ -31,7 +31,7 @@ local overrides = defaults.overrides;
evaluatorType = 'gt',
operatorType = 'or',
queryRefId = 'CPU_Avg',
queryTimeStart = '15m',
queryTimeStart = '5m',
reducerType = 'max',
),
]
Expand Down

0 comments on commit 9481d93

Please sign in to comment.