Splunk Search

Issue adding a symbol after a field value

UMDTERPS
Communicator

The following previous splunk thread works fine:

https://community.splunk.com/t5/Archive/Insert-sign-for-each-result-in-a-specific-column/m-p/149167


| eval sensor = sensor + " %"
51%


However,  if the field name has a space, it does not work:

| eval "System Outlook" = "System Outlook" + " %"
System Outlook %

 

I'm assuming it needs some sort of backslash escaping? (I've tried a bunch of ways). I know I can just rename it without the space, but I want to keep the space.

Any ideas?

Labels (2)
Tags (1)
0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

When using field names with non standard characters, you need to use single quotes on the right hand side of the eval statement, i.e.

| eval "System Outlook" = 'System Outlook' + " %"

 

View solution in original post

bowesmana
SplunkTrust
SplunkTrust

When using field names with non standard characters, you need to use single quotes on the right hand side of the eval statement, i.e.

| eval "System Outlook" = 'System Outlook' + " %"

 

UMDTERPS
Communicator

Perfect, that worked!

 

Thanks!😀

Tags (1)
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...