Splunk Search

How do you include host IP address in the following Splunk search?

rbrisseyii
Explorer

Hello,

All our servers should have more than 2 apps installed. We run this report for a list of systems missing apps:

| rest /services/deployment/server/clients splunk_server=local| table hostname applications*.stateOnClient | untable hostname applications value | stats count by hostname | where count < 3

However, I would also like to include the host's IP address in this, but I can't figure out how to include it.

Any pointers or better ways to go about this?

Tags (1)
0 Karma
1 Solution

KailA
Contributor

Hey !
I think you just missed the ip field.

Can you try something like that

| rest /services/deployment/server/clients splunk_server=local 
| table hostname applications*.stateOnClient ip
| eval hostname = hostname."___".ip
| untable hostname applications value 
| stats count by hostname 
| where count < 3
| rex field=hostname "(?<hostname>.*)___(?<ip>.*)"

Let me know if it works for you.

Kail

View solution in original post

0 Karma

KailA
Contributor

Hey !
I think you just missed the ip field.

Can you try something like that

| rest /services/deployment/server/clients splunk_server=local 
| table hostname applications*.stateOnClient ip
| eval hostname = hostname."___".ip
| untable hostname applications value 
| stats count by hostname 
| where count < 3
| rex field=hostname "(?<hostname>.*)___(?<ip>.*)"

Let me know if it works for you.

Kail

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...