Can CloudWatch alarm be integrated with Amplify application using AWS CDK.

0

I have an amplify application created using AWS Console. I wanted to integrate the CloudWatch alarms to amplify using AWS CDK (Java)

2 個答案
0
已接受的答案

great !! It worked, Thanks.

The below is the code that creates a Amazon CloudWatch alarm for existing Amplify application.

import software.amazon.awscdk.services.cloudwatch.CfnAlarm;

CloudWatch Alarm for Amplify Errors

    CfnAlarm amplifyErrorAlarm = CfnAlarm.Builder.create(this, "AmplifyErrorAlarm")

            .alarmName("AmplifyErrorAlarm")

            .comparisonOperator("GreaterThanThreshold")

            .evaluationPeriods(1)

            .threshold(1.0)  // Set the appropriate threshold for your case

            .metricName("Requests")  // Replace with the actual metric name

            .namespace("AWS/AmplifyHosting")    // Replace with the actual namespace for Amplify metrics

            .period(300)  // 5 minutes (300 seconds)

            .statistic("Sum")

            .actionsEnabled(true)

            .alarmActions(List.of("ARN-OF-THE-SNS-TOPIC"))  // Replace with your SNS topic ARN

            .dimensions(List.of(

                    CfnAlarm.DimensionProperty.builder()

                            .name("App")

                            .value("abcd123")  // Replace with your Amplify application ID

                            .build()

            ))

            .alarmDescription("Amplify Error Alarm")

            .build();
已回答 3 個月前
0

Hi, when you create an application with Amplify, it sends metrics to CloudWatch. The list of preset metrics is indicated in the Amplify documentation.

You can create CloudWatch alarms programmatically using the CDK, cli or CloudFormation for example. The CDK construct simply needs you to build a metric object that will specify which metric you want to monitor (for example namespace: AWS/AmplifyHosting, name: Requests…) and pass it as a parameter to the Alarm object that you create with the comparison operator, threshold, evaluation period and actions.

profile pictureAWS
Jsc
已回答 4 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南