Hi there,
I'm trying to get some Fargate metrics using Cloudwatch namespaces, but I don't see a way to get them to Kibana.
modules.d/aws.yml
- module: aws
period: 5m
access_key_id: 'xxxxxxxxxxxxx'
secret_access_key: 'xxxxxxxxxxxxxxxxxxxxxxx'
metricsets:
- rds
- usage
- ebs
- ec2
- cloudwatch
metrics:
- namespace: "*"
in the logs output I can see this, but not sure how to check this in kibana:
"aws": {
"ecs": {
"metrics": {
"MemoryUtilization": {
"avg": 15.336588541666666,
"max": 15.4296875,
"min": 15.234375,
"sum": 153.36588541666666,
"count": 10
},
"CPUUtilization": {
"sum": 5.197281962927915,
"count": 10,
"avg": 0.5197281962927915,
"max": 1.1245832656975834,
"min": 0.2879062617197633
}
}
},
"cloudwatch": {
"namespace": "AWS/ECS"
},
"dimensions": {
"ServiceName": "web-service",
"ClusterName": "tt-ecs"
}
},
"event": {
"dataset": "aws.cloudwatch",
"module": "aws",
"duration": 120682193
},
"metricset": {
"name": "cloudwatch",
"period": 300000
}
}
How would I be able to visualize these metrics?