Skip to content

Commit 25e3b40

Browse files
author
github-actions
committed
chore: self mutation
Signed-off-by: github-actions <[email protected]>
1 parent 5399b5a commit 25e3b40

File tree

9 files changed

+9
-10
lines changed

9 files changed

+9
-10
lines changed

src/dynamodb.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface WatchDynamoTableOptions {
2121
readonly writeCapacityThresholdPercent?: number;
2222
}
2323

24-
export interface WatchDynamoTableProps extends WatchDynamoTableOptions{
24+
export interface WatchDynamoTableProps extends WatchDynamoTableOptions {
2525
readonly title: string;
2626
readonly watchful: IWatchful;
2727
readonly table: dynamodb.Table;

src/monitoring/aws/ecs/metrics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const enum ApplicationELBMetrics {
88
TARGET_4XX_COUNT = 'HTTPCode_Target_4XX_Count',
99
TARGET_5XX_COUNT = 'HTTPCode_Target_5XX_Count',
1010
TargetResponseTime = 'TargetResponseTime',
11-
RequestCount = 'RequestCount'
11+
RequestCount = 'RequestCount',
1212
}
1313

1414
const enum EcsMetrics {

src/monitoring/aws/lambda/metrics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const enum Metrics {
55
Invocations = 'Invocations',
66
Duration = 'Duration',
77
Errors = 'Errors',
8-
Throttles = 'Throttles'
8+
Throttles = 'Throttles',
99
}
1010

1111
const Namespace = 'AWS/Lambda';

src/monitoring/aws/rds/metrics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const enum Metrics {
99
BufferCacheHitRatio = 'BufferCacheHitRatio',
1010
DatabaseConnections = 'DatabaseConnections',
1111
AuroraReplicaLag = 'AuroraReplicaLag',
12-
CPUUtilization = 'CPUUtilization'
12+
CPUUtilization = 'CPUUtilization',
1313
}
1414

1515
const Namespace = 'AWS/RDS';

src/monitoring/aws/redshift/metrics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const enum Metrics {
88
MaintenanceMode = 'MaintenanceMode',
99
ReadLatency = 'ReadLatency',
1010
WriteLatency = 'WriteLatency',
11-
QueryDuration = 'QueryDuration'
11+
QueryDuration = 'QueryDuration',
1212
}
1313

1414
const Namespace = 'AWS/Redshift';

src/monitoring/aws/sns/metrics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const enum Metrics {
55
NumberOfMessagesPublished = 'NumberOfMessagesPublished',
66
NumberOfNotificationsDelivered = 'NumberOfNotificationsDelivered',
77
NumberOfNotificationsFailed = 'NumberOfNotificationsFailed',
8-
PublishSize = 'PublishSize'
8+
PublishSize = 'PublishSize',
99
}
1010

1111
const Namespace = 'AWS/SNS';

src/monitoring/aws/sqs/metrics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const enum Metrics {
55
ApproximateNumberOfMessagesVisible = 'ApproximateNumberOfMessagesVisible',
66
NumberOfMessagesSent = 'NumberOfMessagesSent',
77
ApproximateAgeOfOldestMessage = 'ApproximateAgeOfOldestMessage',
8-
SentMessageSize = 'SentMessageSize'
8+
SentMessageSize = 'SentMessageSize',
99
}
1010

1111
const Namespace = 'AWS/SQS';

src/monitoring/aws/state-machine/metrics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const enum Metrics {
77
ExecutionsFailed = 'ExecutionsFailed',
88
ExecutionsAborted = 'ExecutionsAborted',
99
ExecutionThrottled ='ExecutionThrottled',
10-
ExecutionsTimedOut = 'ExecutionsTimedOut'
10+
ExecutionsTimedOut = 'ExecutionsTimedOut',
1111
}
1212

1313
const Namespace = 'AWS/States';

tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@
3434
"src/**/*.ts"
3535
],
3636
"exclude": [
37-
"node_modules",
38-
"/home/runner/work/cdk-watchful/cdk-watchful/lib/.types-compat"
37+
"node_modules"
3938
],
4039
"_generated_by_jsii_": "Generated by jsii - safe to delete, and ideally should be in .gitignore"
4140
}

0 commit comments

Comments
 (0)