Splunk Search

Checking specific index data for large server list

nehamvinchankar
Path Finder

Hi all,

I have list of 3k+ servers for which i want to check data flow from specific index. How can i do this with optimize search

Labels (1)
Tags (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @nehamvinchankar,

you could insert the server list in a lookup (called e.g. "perimeter.csv"9 containing at least one column (host).

Remember to create also the lookup definition.

then you could run a search like this:

| tstats count WHERE index=your_index BY host
| append [ | inputlookup perimeter.csv | eval count=0 | fields host count ]
| stats sum(count) AS total BY host
| where total=0

Ciao.

Giuseppe

 

0 Karma

nehamvinchankar
Path Finder

Not working

I want list of servers which are having index data from the list provided

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @nehamvinchankar,

sorry, this is the check that all the servers are sending data.

If you want the server list that sent data is easier, try this:

| tstats count WHERE index=your_index BY host
| table host

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

.conf25 technical session recap of Observability for Gen AI: Monitoring LLM ...

If you’re unfamiliar, .conf is Splunk’s premier event where the Splunk community, customers, partners, and ...

A Season of Skills: New Splunk Courses to Light Up Your Learning Journey

There’s something special about this time of year—maybe it’s the glow of the holidays, maybe it’s the ...

Announcing the Migration of the Splunk Add-on for Microsoft Azure Inputs to ...

Announcing the Migration of the Splunk Add-on for Microsoft Azure Inputs to Officially Supported Splunk ...