Splunk Search

How to use top in timechart

mprreddy51
Explorer

Hi All,

I have a requirement to use TOP 4 in the timechart command:

Below is my search:

index=_internal |timechart count by sourcetype limit=5 span=1d|addcoltotals

(7DAYS DATA)
I need the top 4 column values of (sourcetype) as shown in the screenshot like SPLUNKD,SPLUNK_UI_ACCESS,SPLUNK_WEB_ACCESS,SPLUNK_WEB_SERVICE only
alt text
Thanks
PR

0 Karma
1 Solution

somesoni2
Revered Legend

Try like this

index=_internal | bucket span=1d _time | stats count by _time sourcetype | eventstats sum(count) as total by sourcetype | sort - total | streamstats current=f window=1 values(total) as prev | eval sno=case(isnull(prev),1,prev=total,0,1=1,1) | accum sno | where sno<5 | table _time sourcetype count | xyseries _time sourcetype count | addcoltotals

View solution in original post

somesoni2
Revered Legend

Try like this

index=_internal | bucket span=1d _time | stats count by _time sourcetype | eventstats sum(count) as total by sourcetype | sort - total | streamstats current=f window=1 values(total) as prev | eval sno=case(isnull(prev),1,prev=total,0,1=1,1) | accum sno | where sno<5 | table _time sourcetype count | xyseries _time sourcetype count | addcoltotals

mprreddy51
Explorer

Thanks Somesh

0 Karma

sundareshr
Legend

Couldn't the top 4 sourcetypes be different for each day?

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...