CloudWatch Custom-Metrics with multiple namespace

1

Hello, I'm using EC2 instance and I want to collect memory-usage and disk-usage. So what I did is installed Cloud-Watch-Agent so that I can set Cutom-metrics. Now I can collect both of them with 1 namespace. But the thing is, is it possible to seperate the namespace to check memory-usage and disk-usage individually? and if so, how should I set up on json file?

For example, as you can see the file below, I want to seperate just the namespace with single EC2 instance. But is there a better way to write it? it seems like the file below doesn't work properly.

I "metrics": {
		"namespace": "memory",
		"append_dimensions": {
			"AutoScalingGroupName": "${aws:AutoScalingGroupName}",
			"ImageId": "${aws:ImageId}",
			"InstanceId": "${aws:InstanceId}",
			"InstanceType": "${aws:InstanceType}"
		},
		"metrics_collected": {
			"Memory": {
				"measurement": [
					"% Committed Bytes In Use"
				],
				"metrics_collection_interval": 60
			},
			
		}
"metrics_collected": {
"LogicalDisk": {
				"measurement": [
					"% Free Space"
				],
				"resources": [
					"*"
				],
				"metrics_collection_interval": 60
			}
		}
	}
}


已提問 2 年前檢視次數 1180 次
1 個回答
0

Hello, thanks for reaching out!

Unfortunately it's not possible at this time to configure multiple namespace destinations within a CloudWatch Agent metrics configuration, even when appending multiple config files with separate namespaces in the metrics sections.

There is a feature request in place for this ability, however, I'm unable to give an ETA on when this feature might be implemented for the CloudWatch Agent. You can keep an eye on the AWS What's New page for updates.

For the time being, the metrics from an Agent configuration will all have to utilize the same namespace. For increased ease of tracking these metrics, you do have the option of appending custom dimensions to each metric. Example:

{
	"metrics": {
		"append_dimensions": {
			"AutoScalingGroupName": "${aws:AutoScalingGroupName}",
			"ImageId": "${aws:ImageId}",
			"InstanceId": "${aws:InstanceId}",
			"InstanceType": "${aws:InstanceType}"
		},
		"metrics_collected": {
			"Memory": {
				"measurement": [
					"% Committed Bytes In Use"
				],
				"metrics_collection_interval": 60,
				"append_dimensions": {
					"CustomDimensionName": "MemoryMetric"
				}
			},
			"LogicalDisk": {
				"measurement": [
					"% Free Space"
				],
				"metrics_collection_interval": 60,
				"resources": [
					"*"
				],
				"append_dimensions": {
					"CustomDimensionName": "DiskMetric"
				}
			}
		}
	}
}
AWS
支援工程師
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南