Skip to content

Commit

Permalink
Update expected number of data nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwinch committed Aug 20, 2024
1 parent c85fb55 commit 12ac19c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cdk/lib/__snapshots__/elastic-search-monitor.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ exports[`The ElasticSearchMonitor stack matches the snapshot 1`] = `
"Value": "TEST",
},
],
"Threshold": 3,
"Threshold": 4,
},
"Type": "AWS::CloudWatch::Alarm",
},
Expand Down
2 changes: 1 addition & 1 deletion cdk/lib/elastic-search-monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export class ElasticSearchMonitor extends GuStack {
alarmDescription: `Unexpected count of data nodes in ${this.stage}. Runbook: https://docs.google.com/document/d/1PuEvL7L-CTV72Jx4OmiB3y5hlMmJR7Xz-YxYWAMiGdY`,
evaluationPeriods: 2,
metric: metric("NumberOfDataNodes"),
threshold: 3,
threshold: 4,
});

new GuAlarm(this, "MasterNodeCountAlarm", {
Expand Down

0 comments on commit 12ac19c

Please sign in to comment.