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

asked 10 months ago759 views
1 Answer
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
EXPERT
answered 10 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions