Splunk Search

splunk queries to insert special characters in field values

splunker12er
Motivator

How to insert apostrophes in all field values

Results:

group         count
10.243.200.14   1
10.243.200.29   1
10.243.200.67   1

expected o/p:

 group          count
"10.243.200.14" 1
"10.243.200.29" 1
"10.243.200.67" 1
Tags (1)
0 Karma

woodcock
Esteemed Legend

There are a kazillion ways to do it:

... | rex mode=sed field=group "s/(.*)/\"\1\"/"
0 Karma

fdi01
Motivator

see answers of jeffland above it ok or
you can also try like :

....| eval group="\""+group+"\""

jeffland
SplunkTrust
SplunkTrust

If you want them to be in the data (i.e. for later csv export or further calculations), you can add quotes like this:

your search | eval group="\"".group."\""

Keep in mind that this changes the actual value of your field. If you simply want to display quotes around your fields in the table, use fieldformat:

your search | fieldformat group="\"".group."\""

This will only change how your data is rendered in the table, not the actual field values.

Get Updates on the Splunk Community!

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!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...