Splunk Search

Table function is encoding my search results- how can I prevent this from happening?

Klaus_Mueller
Loves-to-Learn

My search is supposed to return some data with double quotes on it but when I use the TABLE function the results displayed are encoded.

Example:

Search:
index=* "america" "PurchaseOrgE"
|rex "Query being run \[(?<Query>(.*?)(?=\]))"
|eval ParsedQuery = replace(Query," AND "," AND ")
|table ParsedQuery

Expected result:
SELECT M2HTab1."SupplierKey.UniqueName" AS "SupplierKey_UniqueName",M2HTab1."Name" 


Current result:

SELECT M2HTab1.&quot;SupplierKey.UniqueName&quot; AS &quot;SupplierKey_UniqueName&quot;,M2HTab1.&quot;Name&quot; 

 
As you can see in the examples the double quotes are encoded making it hard to properly see the results.

Is there a way to prevent this from happening?

 Thanks in advance.

 

 

 

 

 

Labels (1)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Have you tried the urldecode function?

index=* "america" "PurchaseOrgE"
|rex "Query being run \[(?<Query>(.*?)(?=\]))"
|eval ParsedQuery = urldecode(replace(Query," AND "," AND "))
|table ParsedQuery

 

---
If this reply helps you, Karma would be appreciated.
0 Karma

Klaus_Mueller
Loves-to-Learn

Yes,

I did try it but looks like is not the replace function that is causing the data to be encoded and yes the table function.

Unfortunately, It also doesn't work. 

Thanks for the reply.

0 Karma

PickleRick
SplunkTrust
SplunkTrust

Which version are you using and what do your events look like?

My tests don't show any form of conversion (either escaping or HTML encoding).

For example, this run-anywhere search

| makeresults 
| eval a="\"a quoted text with \" ' quotes \""
| table a

shows a perfectly good and expected output of

"a quoted text with " ' quotes "

 

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Observability Simplified: Combining User Experience, Application Performance & ...

Tech Talk Observability Simplified: Combining User Experience, Application Performance & Network ...

Event Series May & June: From Network Visibility to Service Intelligence

Unifying the Network: Moving from Alert Noise to Service Intelligence with Splunk ITSI In today’s hybrid ...