Splunk Search

How do I edit my search using tstats to get top hosts by percentage?

mcbradford
Contributor

I run the following every morning, but I know it could be accomplished more efficiently using tstats, but I cannot get the top host by percentage of all host.

index=* | top  20 host

The following gives me the top host, but I also want to know the percentage of all the hosts.

| tstats count by host | sort -count
Tags (3)
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

Try this:

| tstats count by host | eventstats sum(count) as total | eval percentage = count/total*100 | fields - total | sort - count | head 20

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

Try this:

| tstats count by host | eventstats sum(count) as total | eval percentage = count/total*100 | fields - total | sort - count | head 20

martin_mueller
SplunkTrust
SplunkTrust

All you need to do is read the sort docs: | sort 0 - count will work for larger sets.

http://docs.splunk.com/Documentation/Splunk/6.5.1/SearchReference/sort

w531t4
Path Finder

I suppose that works, my mistake. Thanks!

0 Karma

w531t4
Path Finder

I downvoted this post because doesn't work on large event sets over 10000 rows

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...