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 Respostas
0
Resposta aceita

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();
respondido há 3 meses
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
respondido há 3 meses

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas