List custom and automatic cloudwatch metrics

1

Hi Team,

Could you please let me know how to get the list of

  1. Automatic cloudwatch metrics
  2. Custom cloudwatch metrics

Regards, Rajesh B

preguntada hace 10 meses794 visualizaciones
1 Respuesta
1

Hi, you can distinguish between AWS-standard and custom metric via their namespace Namespace definition: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#Namespace

Namespaces starting with "AWS/service" are reserved for official AWS services.

Example of an AWS standard/automatic metric:

 {
            "Namespace": "AWS/Usage",
            "MetricName": "CallCount",
            "Dimensions": [
                {
                    "Name": "Type",
                    "Value": "API"
                },
                {
                    "Name": "Resource",
                    "Value": "DescribeSubnets"
                },
                {
                    "Name": "Service",
                    "Value": "EC2"
                },
                {
                    "Name": "Class",
                    "Value": "None"
                }
            ]
        },

So, if you use CLI "aws cloudwatch list-metrics", you will get a list of all metrics. Those with Namespace "AWS/xxx" belong to AWS. The others are custom that you create or that a 3rd-party component that you use implement.

CLI for List metrics : https://awscli.amazonaws.com/v2/documentation/api/latest/reference/cloudwatch/list-metrics.html

profile pictureAWS
EXPERTO
respondido hace 10 meses

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas