Hi aluetjen,
here are some run everywhere examples for the messages sent per minute per queue
index=_internal earliest=-15m@m | timechart span=1m count by series
index=_internal earliest=-15m@m | timechart span=1m sum(kbps) AS mySum by series
and if you want to use delta on this
index=_internal earliest=-15m@m | bucket _time span=1m | stats count AS myCount by series, _time | delta myCount
index=_internal earliest=-15m@m | bucket _time span=1m | stats sum(kbps) AS mySum by series, _time | delta mySum
The count examples will give you a total count of events for each series and the sum example will sum the values of the given field, in this case kbps of each series.
hope this helps to get you started ...
cheers, MuS
... View more