INFRA-3131 | Ankit Bhardwaj | add rds alert on total iops (#583)

* INFRA-3131 | Ankit Bhardwaj | add rds alert on total iops

* INFRA-3131 | Ankit Bhardwaj | update default thresholds
This commit is contained in:
Ankit Bhardwaj Bhardwaj
2024-06-03 17:15:54 +05:30
committed by GitHub
parent ec8a56edce
commit f3a60c1aa7
3 changed files with 5 additions and 0 deletions

View File

@@ -97,6 +97,7 @@ const rdsAlertFields = [
{ field: 'writeLatency', label: 'writeLatency(sec)' },
{ field: 'ebsByteBalance', label: 'ebsByteBalance(percent)' },
{ field: 'ebsIOBalance', label: 'ebsIOBalance(percent)' },
{ field: 'totalIOPS', label: 'totalIOPS(percent)' },
];
const auroraAlertFields = [

View File

@@ -578,6 +578,7 @@ export const addDatabase = (manifest: any) => {
writeLatency: 0.5,
ebsByteBalance: 70,
ebsIOBalance: 70,
totalIOPS: 95,
},
rdsAlertDurations: {
cpuUtilization: 15,
@@ -591,6 +592,7 @@ export const addDatabase = (manifest: any) => {
writeLatency: 5,
ebsByteBalance: 5,
ebsIOBalance: 5,
totalIOPS: 5,
},
auroraAlertThresholds: {
cpuUtilization: 70,

View File

@@ -67,6 +67,7 @@ export interface RdsAlertDurations {
cpuCreditBalance?: number;
freeMemoryTooLowInMB?: number;
freeStorageSpacePercent?: number;
totalIOPS?: number;
}
export interface RdsAlertThresholds {
@@ -81,6 +82,7 @@ export interface RdsAlertThresholds {
cpuCreditBalance?: number;
freeMemoryTooLowInMB?: number;
freeStorageSpacePercent?: number;
totalIOPS?: number;
}
export interface AuroraAlertDurations {