logstash-plugins / logstash-integration-aws

Apache License 2.0
7 stars 17 forks source link

AWS/AmazonMQ - allow defining dimensions to collect #40

Open mitoihs opened 11 months ago

mitoihs commented 11 months ago

I would like to collect both the name of a broker and the name of a queue.

cloudwatch {
    namespace => "AWS/AmazonMQ"
    filters => {
        "Broker" => "<my broker>"
        "Queue" => "<my queue>" # < I don't want to filter by the queue but I want its name in the output
    }
    (...)
}

Currently, the only dimension in the result is Broker and that's not enough to properly analyze those metrics.