Splunk Search

How to get first 10 search results on timechart

tkadale
Path Finder

I want to show a graph for min free disk space for the hosts. But I want to show only first 10 hosts on graph having free disk space as lowest.
My basic query is:
index="tougou" sourcetype="disk" | fields free_disk_MB, host | timechart min(free_disk_MB) by host limit=10 useother=f

How to improve this query to get only first 10 hosts having lowest free disk space?

Tags (1)
0 Karma

Christian
Path Finder

Hi,

i would say this will solve you problem :
http://www.splunk.com/base/Documentation/latest/SearchReference/Head

or in your example :
index="tougou" sourcetype="disk" | fields free_disk_MB, host | timechart min(free_disk_MB) by host limit=10 useother=f | head 10

0 Karma

Christian
Path Finder

well it depends on your query, head will return you the first 10 rows of your search so you either sort it before or using the top command http://www.splunk.com/base/Documentation/latest/SearchReference/top , which is probably the easier way 🙂 sorry didn't think on that before

0 Karma

tkadale
Path Finder

Will it give me the top users having lowest free disk space, or it will give me first 10 results. I want those 10 users having lowest free disk space.

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 ...