Splunk Search

identify server host names as developemnt or test by name

Hudond
Path Finder

Good afternoon

I have a question about identifying the type of environment the servers are in by their hostnames being extracted using the Microsoft-add on for splunk.

The server hostnames are being indexed as follows:

servername"DV"

servername"TV"

Servername"DV"serverName

Servername"TV"servername

So server names that have the DV and TV designations are identified as belonging to the development and test environments. Sometimes the characters are at the end and sometimes they are in the middle of the server names.

I am looking at running a search that will identify the hostname as being in the development or test environments and adding that as a column to the search results fro the hostnames.

If the hostname does not have those designations I would like to identify them as "other"

I would appreciate any guidance of the best approach to use for the search string, that way I can research it and learn how to do it.

Thank you

Dan

 

 

 

 

Labels (1)
0 Karma
1 Solution

jwrjrobertson05
Explorer

You'll want to use eval with CASE something like...

 

index=<something> field=<whatever>
| eval ENV = CASE ( hostname LIKE "%DV%","DV", hostname LIKE "%TV%","TV",hostname LIKE "%","OTH")
| stats count by ENV

 

View solution in original post

jwrjrobertson05
Explorer

You'll want to use eval with CASE something like...

 

index=<something> field=<whatever>
| eval ENV = CASE ( hostname LIKE "%DV%","DV", hostname LIKE "%TV%","TV",hostname LIKE "%","OTH")
| stats count by ENV

 

Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Introduction to Splunk AI

How are you using AI in Splunk? Whether you see AI as a threat or opportunity, AI is here to stay. Lucky for ...

Splunk + ThousandEyes: Correlate frontend, app, and network data to troubleshoot ...

Are you tired of troubleshooting delays caused by siloed frontend, application, and network data? We've got a ...

Maximizing the Value of Splunk ES 8.x

Splunk Enterprise Security (ES) continues to be a leader in the Gartner Magic Quadrant, reflecting its pivotal ...