Splunk Search

Streamstats And Timechart

subtrakt
Contributor

Hi -
Trying to sort by highest URL count, limit to 12(prevent "other" in the time-chart) and then time-chart. Thanks!

This doesn't seem to give me the desired results:

... | streamstats count by URL | accum URL | sort count limit=12 | timechart count span=2m by URL

Logic:

  • stream the stat counts by url
  • accumilate the streamed URL stats
  • sort by count
  • limit the count to 12 so "other" is not displayed on the timechart
  • create timechart

Another thing worth mentioning when i remove 'accum URL' and replace sort with | where count > n | it works but is not an automatic solution... I guess with "sort" i have to worry about rows being created and if >10000 rows are created i will have truncated results. Is that accurate?

This is what i'm using currently and it seems to be working -

... | streamstats count by URL | where count > 10 | timechart count span=2m by URL

Tags (2)
0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

Wouldn't this achieve the desired output without any streamstats shenanigans?

... | timechart limit=12 useother=f span=2m count by URL

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

Wouldn't this achieve the desired output without any streamstats shenanigans?

... | timechart limit=12 useother=f span=2m count by URL

subtrakt
Contributor

Is stream stats counting by the search duration? If i choose 2 hours it will look for any urls counts > 10 over 2 hours? or is it looking at a smaller default bucket size if i do not specify it prior?

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...