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 Antworten
0
Akzeptierte Antwort

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();
beantwortet vor 3 Monaten
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
beantwortet vor 4 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen