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
			}
		}
	}
}


feita há 2 anos1247 visualizações
1 Resposta
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
ENGENHEIRO DE SUPORTE
respondido há 2 anos

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