Splunk Search

How to create new multivalued field based on multivalued field

karlduncans
Engager

I'm trying to create a new field that can populate multiple values based on another field's values. in this case i have a field called host, where there are 20 virtual servers listed. but, i want to separate them out by say, their "location" based on the host name alone.

for example:
new field hostLocation

host1, host2, host3, host4, host5, =northServers
host6, host7, host8, host9, host10, =southServers
host11, host12, host13, host14, host15, = westServers
host16, host17, host18, host19, host20, =eastServers

So if i were to run

index=foo source=bar
| stats count by hostLocation

would return log counts for the four defined host locations. ive tried various types of eval statements, but this case has more that just 2 outcomes.

thank you in advance!

Tags (2)
0 Karma
1 Solution

emiller42
Motivator
| eval hostLocation=case(host=="host1" OR host=="host2" OR host=="host3", "northServers",
    host=="host6" OR host=="host7" OR host=="host8", "southServers",
    host=="host11" OR host=="host12" OR host=="host13", "westServers")

I left out some data just because the above illustrates the methodology. You are not limited to two cases when using the case() eval function.

Another option is to tag your hosts with this metadata. Then you can just use the tag for filtering/aggregation.

View solution in original post

0 Karma

emiller42
Motivator
| eval hostLocation=case(host=="host1" OR host=="host2" OR host=="host3", "northServers",
    host=="host6" OR host=="host7" OR host=="host8", "southServers",
    host=="host11" OR host=="host12" OR host=="host13", "westServers")

I left out some data just because the above illustrates the methodology. You are not limited to two cases when using the case() eval function.

Another option is to tag your hosts with this metadata. Then you can just use the tag for filtering/aggregation.

0 Karma
Get Updates on the Splunk Community!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...