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!

Announcing Scheduled Export GA for Dashboard Studio

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

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...