Splunk Search

How to rename and combine fields to display data with combined counts?

WarrenShroyer
Explorer

I'm trying to do an OS inventory from Active Directory. My results look something like this:

operatingSystem------------------------------ count
Windows 7 Enterprise -----------------------27
Windows 7 Professional---------------------3
Windows Server 2008 R2 Datacenter---100
Windows Server 2008 R2 Enterprise----24
Windows Server 2008 R2 Standard-----3
Windows Server 2012 Datacenter-------54
Windows Server 2012 R2 Datacenter---102
Windows Server® 2008 Datacenter-----11

And this is what I want:

operatingSystem -----------count
Windows 7---------------------30
Windows Server 2008-----138
Windows Server 2012-----156

I can't figure out how to rename and combine the fields to give me the data in this way. Any suggestions?

Tags (4)
0 Karma
1 Solution

javiergn
Super Champion

Try this:

your search here
| eval operatingSystem = case (
    match(operatingSystem, "Windows 7"), "Windows 7",
    match(operatingSystem, "Windows Server 2008"), "Windows Server 2008",
    match(operatingSystem, "Windows Server 2012"), "Windows Server 2012",
    1 == 1, "Other"
)
| stats sum(count) as count by operatingSystem

View solution in original post

javiergn
Super Champion

Try this:

your search here
| eval operatingSystem = case (
    match(operatingSystem, "Windows 7"), "Windows 7",
    match(operatingSystem, "Windows Server 2008"), "Windows Server 2008",
    match(operatingSystem, "Windows Server 2012"), "Windows Server 2012",
    1 == 1, "Other"
)
| stats sum(count) as count by operatingSystem

somesoni2
Revered Legend

It would be good to include a default case value, to help validate that every possible OS string has been taken care of.

0 Karma

WarrenShroyer
Explorer

This works great! If is there a way to allow the "Other" values to continue to display what they are, instead of showing them as "Other"? For example, if I have one OSX box, let it show as OSX instead of Other.

0 Karma

javiergn
Super Champion

Yes, simply do:

your search here
 | eval operatingSystem = case (
     match(operatingSystem, "Windows 7"), "Windows 7",
     match(operatingSystem, "Windows Server 2008"), "Windows Server 2008",
     match(operatingSystem, "Windows Server 2012"), "Windows Server 2012",
     1 == 1, operatingSystem
 )
 | stats sum(count) as count by operatingSystem

WarrenShroyer
Explorer

Thanks Again!

0 Karma

javiergn
Super Champion

True. Just fixed my answer to reflect that.

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...