Splunk Search

Renaming field name having #

ccflsampa
New Member

How can I rename a field name starting with # in Splunk search tab?
For example: field name I have "#client Name" and I want to rename it as "clientName"

Thanks!

Tags (1)
0 Karma

ccflsampa
New Member

Thank you!
I am able to rename the field name with # (successfully renamed # MHCP Cases to MHCPCases)
but while saving the results to the dashboard I am getting the error (The dataset "RootObject" has no field " MHCP Cases" ). How can I avoid this error?

0 Karma

Shan
Builder

@ ccflsampa : I hope you got your answer. If the above commands helps. Please accept the answer and close the question.

0 Karma

Shan
Builder

yes i accept with @ssadanala1.
I hope you need to rename the field name in spl query right. If yes is your answer.
Then you can use simple rename command and change the field name.

Example :

| makeresults
|eval "#Data" = 1
|eval "#client Name"="study"
|rename #Data as Data, "#client Name" as "client Name"

You can simply use this for renaming your field..
|rename #Data as Data, "#client Name" as "client Name"

0 Karma

ssadanala1
Contributor

Please try this

| makeresults 
|eval "#hello" = "1"|eval "#hola"="2"
|rename #* as *
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...