Splunk Search

How do you use tstats to list the number of unique hosts over time?

a212830
Champion

Hi,

Is there a way to use the tstats command to list the number of unique hosts that report into Splunk over time? I'm looking to track the number of hosts reporting in on a monthly basis, over a year.

0 Karma

season88481
Contributor

a single one-liner should do the trick

 

| tstats dc(host) WHERE index=_internal  by _time
Tags (1)
0 Karma

skoelpin
SplunkTrust
SplunkTrust

Yes ofcourse there is, try this and run it over a 1 year period.. It may be slow depending on how many unique hosts you have and how many indexers you have. If you have to run this frequently, I'd recommend setting this up as a scheduled search to populate a summary index

| tstats prestats=f count WHERE index=* sourcetype=*  by _time, host
| timechart span=1mon dc(host) AS unique_host_count

KailA
Contributor

This might be a bit faster.
Trying to not use distinct count here :

| tstats prestats=f count WHERE index=* sourcetype=*  by _time, host span=1mon
| stats count AS distinct_host_count BY _time
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...