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
Get Updates on the Splunk Community!

Celebrating Fast Lane: 2025 Authorized Learning Partner of the Year

At .conf25, Splunk proudly recognized Fast Lane as the 2025 Authorized Learning Partner of the Year. This ...

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...