Splunk Search

help on rename which doesnt works

jip31
Motivator

Hello

I use the search below but I don't know why the rename command doesn't works

Thanks for your help

 

| inputlookup fo_all 
| fields SITE 
| dedup SITE 
| rename "ABCD" as "AB"
| table SITE

 

 

 

Tags (1)
0 Karma
1 Solution

thambisetty
SplunkTrust
SplunkTrust

okay. I believe there is an Item ABCD in your SITE field and you would want to rename it to AB. if is that what you are looking for then use below:

| inputlookup fo_all 
| stats count by SITE
| fields SITE 
| eval SITE=if(SITE=="ABCD","AB",SITE)
————————————
If this helps, give a like below.

View solution in original post

0 Karma

thambisetty
SplunkTrust
SplunkTrust
| inputlookup fo_all  
| fields SITE # you are limiting fields to one field SITE, from here on you will have only one field.
| dedup SITE 
| rename "ABCD" as "AB" # you are trying to rename field ABCD to AB which you don't have at this moment. 
| table SITE
————————————
If this helps, give a like below.
Tags (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Rename is for field names. You have reduced your fields to just SITE. There is no field ABCD for you to rename as AB. What is it you are trying to do?

0 Karma

jip31
Motivator

Hi I need to rename the items of the field SITE

Tags (1)
0 Karma

thambisetty
SplunkTrust
SplunkTrust

okay. I believe there is an Item ABCD in your SITE field and you would want to rename it to AB. if is that what you are looking for then use below:

| inputlookup fo_all 
| stats count by SITE
| fields SITE 
| eval SITE=if(SITE=="ABCD","AB",SITE)
————————————
If this helps, give a like below.
0 Karma

jip31
Motivator

thanks it works

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Hi @jip31 

What @thambisetty  has suggested works fine for ABCD "renamed" to AB but I suspect this is just example data and what you want is something more generic, perhaps substr() or replace() might be more useful, you may want to consider using case() and match() to do different "renames"

0 Karma
Get Updates on the Splunk Community!

Automatic Discovery Part 1: What is Automatic Discovery in Splunk Observability Cloud ...

If you’ve ever deployed a new database cluster, spun up a caching layer, or added a load balancer, you know it ...

Real-Time Fraud Detection: How Splunk Dashboards Protect Financial Institutions

Financial fraud isn't slowing down. If anything, it's getting more sophisticated. Account takeovers, credit ...

Splunk + ThousandEyes: Correlate frontend, app, and network data to troubleshoot ...

 Are you tired of troubleshooting delays caused by siloed frontend, application, and network data? We've got a ...