Having this initial query I obtain a list of results order by Consumer, and pod
messages_number container_name="pol-sms-amh-throttler" | stats avg(messages_number) as consumer_node by Consumer, pod
Then I append a second stats where I want to sum all the values of pods by Consumer
messages_number container_name="pol-sms-amh-throttler" | stats avg(messages_number) as consumer_node by Consumer, pod | stats sum(consumer_node) as AvgConsumption by Consumer limit=0
Is this query correct and accurate about what I'm want to achieve?
Also I don't know how can I see the AvgConsumptions in a visualization
... View more