Splunk Search

How can I iterate through all the column names and replace characters in the their names?

HattrickNZ
Motivator

How can I iterate through all the column names and replace space with underscore and replace :(colon space) with an underscore?

MY Search:

   | makeresults 
     | eval data = "
        1    2017-12    A    155749    131033    84.1;
        2    2017-12    B    24869    23627    95;
        3    2017-12    C    117618    117185    99.6" 
     | makemv delim=";" data 
     | mvexpand data 
     | rex field=data "(?<serial>\d)\s+(?<date>\d+-\d+)\s+(?<type>\w)\s+(?<attempts>\d+)\s+(?<successfullAttempts>\d+)\s+(?<sr>\d+)" 
     | fields + date serial type attempts successfullAttempts sr 
     | rename date as _time 
     | search serial=* 
     | eval "success full: Attempts"=5
     | eval "success full: Attempts2"=6

My OUTPUT:

    _time   serial  type    attempts    successfullAttempts sr  success full: Attempts  success full: Attempts2
1   2017-12 1   A   155749  131033  84  5   6
2   2017-12 2   B   24869   23627   95  5   6
3   2017-12 3   C   117618  117185  99  5   6

Adding this to my search gives me what I want, but I am looking at being able to iterate as opposed to do it verbose.

 | rename "success full: Attempts" as success_full_Attempts
 | rename "success full: Attempts2" as success_full_Attempts2

related Q here

Tags (2)
0 Karma
1 Solution

FrankVl
Ultra Champion

Add this:

  | rename "*: *" AS *_*
  | rename "* *" AS *_*

View solution in original post

FrankVl
Ultra Champion

Add this:

  | rename "*: *" AS *_*
  | rename "* *" AS *_*
Get Updates on the Splunk Community!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...