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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...