Dashboards & Visualizations

rename column name

simo
Path Finder

hi 

I have a column with the following name

transactionId: N/A

the value after :  it can take on more values 

transactionId: start

how can I rename it so that it always takes the value transactionId ?

Thanks for your help 🙂

Simone

 

 

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Do you mean something like this?

| makeresults
| eval transactionid="start"
| eval {transactionid}=transactionid
0 Karma

simo
Path Finder

hi @ITWhisperer 

start is the name that the column takes, the field can be called

"transactionId: N/A" OR "transactionId: start" 

I would like to rename it "transactionId" depending on the name it takes

simone

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| makeresults 
| eval transactionid=split("transactionid: start,transactionid: N/A",",")
| mvexpand transactionid
| streamstats count as row 
| eval {transactionid}=mvindex(split("AB",""),row%2)
| fields - transactionid _time row
| foreach "transactionid: *"
    [| eval transactionid=coalesce(transactionid,'<<FIELD>>')]

You can't have more than one field with the same name but you can eval a field more than once

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 ...