Splunk Dev

How to merge text in Splunk table?

ashanka
Explorer

Have a table like this , how

Type Country

Reporting US
reporting CAN
Reporting IND
COnsolidated US
Consolidate CAN
Consolidated IND

How do i display as

Type Country

Reporting US
CAN
IND
Consolidated US
CAN
IND

Tags (1)
0 Karma

anmolpatel
Builder

@ashanka as such:

| makeresults 
| eval _raw = "Type Country
Reporting US
reporting CAN
Reporting IND
COnsolidated US
Consolidate CAN
Consolidated IND" 
| multikv forceheader=1 
| eval Type_new = upper(substr(Type, 0, 1)) + lower(substr(Type, 2)) 
| eval Type = case(match(Type_new, "Reporting"), "Reporting", match(Type_new, "Consolidate(d)?"), "Consolidated")
| stats list(Country) as Country By Type

This will return:
alt text

0 Karma

manjunathmeti
Champion

Try this. This will display results exactly as you want.

| eval Type=if(Country="US", Type, Country), Country=if(Country="US", Country, "") 
| table Type, Country

If you want to group Country by Type, then use stats.

| stats values(Country) as Country by Type

Sample query:

| makeresults 
| eval _raw=" Type Country
Reporting US
reporting CAN
Reporting IND
Consolidated US
Consolidate CAN
Consolidated IND" 
| multikv forceheader=1 
| eval Type=if(Country="US", Type, Country), Country=if(Country="US", Country, "") 
| table Type, Country
0 Karma
Get Updates on the Splunk Community!

Brains, Bytes, and Boston: Learn from the Best at .conf25

When you think of Boston, you might picture colonial charm, world-class universities, or even the crack of a ...

Splunk AppDynamics Agents Webinar Series

Mark your calendars! On June 24th at 12PM PST, we’re going live with the second session of our Splunk ...

SplunkTrust Application Period is Officially OPEN!

It's that time, folks! The application/nomination period for the 2025 SplunkTrust is officially open! If you ...