Splunk Enterprise Security

How to combine two fields values into one

yvassilyeva
Path Finder

Hi,

I have the following table:

status                                          count

CANCELLED                                5

Cancelled                                     10

RESOLVED                                    3

Resolves                                        3

 

And i would like to combine the same name field values despite the letter cases like this:

status                                         count
Cancelled                                     15

Resolved                                        6

 

Thank you in advance.

0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

There are a couple of ways to do that.  The most common is to use a case statement to normalize the values.

| eval status=case(status="CANCELLED" OR status="Cancelled","Cancelled", status="RESOLVED" OR status="Resolved", "Resolved", 1==1, status)

Another way is to normalize by making all values have the same case.

| eval status=lower(status)

Do either of these before the stats command.

 

---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

There are a couple of ways to do that.  The most common is to use a case statement to normalize the values.

| eval status=case(status="CANCELLED" OR status="Cancelled","Cancelled", status="RESOLVED" OR status="Resolved", "Resolved", 1==1, status)

Another way is to normalize by making all values have the same case.

| eval status=lower(status)

Do either of these before the stats command.

 

---
If this reply helps you, Karma would be appreciated.
0 Karma

yvassilyeva
Path Finder

Thank you. That is perfect

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| eval status=substr(status,1,1).lower(substr(status,2))
0 Karma

yvassilyeva
Path Finder

Thank you for a quick response. That also worked!

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Take Action Automatically on Splunk Alerts with Red Hat Ansible Automation Platform

 Are you ready to revolutionize your IT operations? As digital transformation accelerates, the demand for ...

Calling All Security Pros: Ready to Race Through Boston?

Hey Splunkers, .conf25 is heading to Boston and we’re kicking things off with something bold, competitive, and ...

Beyond Detection: How Splunk and Cisco Integrated Security Platforms Transform ...

Financial services organizations face an impossible equation: maintain 99.9% uptime for mission-critical ...