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!

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