Splunk Search

Help adding pipe "l" for all results

kc_prane
Communicator

Hello  - I am getting the below error. I am trying to add pipe "|"  for all the results.

 Error : Failed to parse templatized search for field 'ResponseTime(ms)'

My search :

 | table PeriodDate VendorName ContractName OccMetricCode Pagekey TransactionType TransactionDatetime ResponseTime(ms) Comment
| foreach * [ eval <<FIELD>>="|".<<FIELD>>."|"] 

 

I am not getting pipe seperated results only for ResponseTime

PeriodDate 

ResponseTime(ms) 

Comment 

|2022/08/30|

0

||

 

Thanks in advance

 

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

ITWhisperer
SplunkTrust
SplunkTrust

Try something like this

| table PeriodDate VendorName ContractName OccMetricCode Pagekey TransactionType TransactionDatetime ResponseTime(ms) Comment
| foreach * [ eval "<<FIELD>>"="|".'<<FIELD>>'."|"] 

View solution in original post

bowesmana
SplunkTrust
SplunkTrust

To add to @ITWhisperer reply. When handling field names that start with numbers, or contain 'odd' characters, e. g. in this case the brackets, (), you need to use single quote characters on the right hand side of eval. It's always sensible, particularly when using foreach, to DOUBLE quote the left hand side of the eval, i.e. 

| eval "QUOTED NAME"='Quoted(ms) field'

 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Try something like this

| table PeriodDate VendorName ContractName OccMetricCode Pagekey TransactionType TransactionDatetime ResponseTime(ms) Comment
| foreach * [ eval "<<FIELD>>"="|".'<<FIELD>>'."|"] 

kc_prane
Communicator

Thanks @ITWhisperer

0 Karma
Get Updates on the Splunk Community!

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...

Your Voice Matters! Help Us Shape the New Splunk Lantern Experience

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Building Momentum: Splunk Developer Program at .conf25

At Splunk, developers are at the heart of innovation. That’s why this year at .conf25, we officially launched ...