Hi,
I'm new to Splunk and I'm looking for some help with plotting a timechart to show requests per sec. Thanks in advance.
I currently have a dashboard panel that shows transactions (or requests)/second. The user chooses the time range and span from a drop-down and TPS is plotted for that time range. This is the search I'm using.
search string | timechart span=$tok_span$ count | timechart per_second(count)
This works great, but the search string returns all services grouped under a certain category that is filtered by the url string.
Now I need to plot the same metric (TPS) for each service (and there is like 10 of them). I have an eventtype created for each service.
My problem is timechart per_second() works only for a single integer value count, but I want to be able to plot this for each service on the same timechart.
Any thoughts are greatly appreciated. Thanks!
↧