Dashboards & Visualizations

How to Add text to value only if?

marco_massari11
Communicator

Hi,

I have a lookup containing some admin users and I need to add some text like "ADS_" before the username to distinguish them from normal users. I tried:

index=myindex tag=authentication
| lookup Ads.csv Utenza AS username OUTPUT Gruppo
| fillnull value=NULL
| eval username=if(Gruppo="NULL",username, ADS_.username)
| eval action=if(match(details_message,"opened a Web Portal"),"success",action)
| search action=success dest_host!="- -"
| stats count by username
| sort count desc

 

what I'm missing?

 

Thanks in advance!

Labels (4)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
| eval username=if(Gruppo="NULL",username, "ADS_".username)

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust
| eval username=if(Gruppo="NULL",username, "ADS_".username)

gcusello
SplunkTrust
SplunkTrust

Hi @marco_massari11,

the eval statement isn't correct:

index=myindex tag=authentication
| lookup Ads.csv Utenza AS username OUTPUT Gruppo
| fillnull value=NULL
| eval username=if(Gruppo="NULL",username, "ADS_".username)
| eval action=if(match(details_message,"opened a Web Portal"),"success",action)
| search action=success dest_host!="- -"
| stats count by username
| sort count desc

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...