If you want to display the stats per minute the following search might work:
<basesearch> | eval counter=if(stat="Deferred:",1,-1) | timechart span=1m sum(counter)
If you want to see how the queue size develops over time:
<basesearch> | eval counter=if(stat="Deferred",1,-1) | reverse |streamstats sum(counter) as running_count | timechart span=1m avg(running_count) min(running_count) max(running_count)
You will only see how the queue changes over time since we do not know the initial size of the queue.
If this does not help, can you post some sample logs?
Chris
... View more