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:
committed by
GitHub
parent
ec8a56edce
commit
f3a60c1aa7
@@ -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 = [
|
||||
|
||||
@@ -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,
|
||||
|
||||
2
src/types/Manifest.d.ts
vendored
2
src/types/Manifest.d.ts
vendored
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user