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

已提问 10 个月前794 查看次数
1 回答
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
专家
已回答 10 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则