Getting Data In

How to override automatic key-value extraction which contain single quotes?

koshyk
Super Champion

We have got some data in below format

2018-07-26T01:00:01 empID=12345 empName='Spider Man' department='IT'
2018-07-26T01:00:02 empID=12346 empName='Super Man' department='HR'

When splunk extracts (automatically), the fields contains single quotes '
eg empName='Spider Man'

But customer doesn't need to see the single quotes !!
Any Better way to remove the automatic extraction ,so we can say the value is Spider Man and NOT 'Spider Man'

(I understand, I can write regex to do this. But prefer if we do via props.conf or transforms.conf in simplest way possible)

0 Karma
1 Solution

akocak
Contributor

I don't think you need transforms for this task.
you simply need to add following or similar to your props under your sourcetype:(note " ' " in replace)

    [mysourcetype]
    .....
    EVAL-empName = nullif(replace(empName,"'",""),"-")

View solution in original post

patilsonali1729
Path Finder

Hello,
Try using below in tensforms.conf.

[mytransform]
REGEX = \s+(\w+)='(.*?)'
FORMAT = $1::$2
MV_ADD = true
REPEAT_MATCH = true

Use the correct name in props.conf(mytransform) e.g
[]
REPORT-fieldextr = mytransform

koshyk
Super Champion

thanks. upvoted, but preferred the above person's option as it is simpler.

0 Karma

akocak
Contributor

I don't think you need transforms for this task.
you simply need to add following or similar to your props under your sourcetype:(note " ' " in replace)

    [mysourcetype]
    .....
    EVAL-empName = nullif(replace(empName,"'",""),"-")

koshyk
Super Champion

thanks mate. Prefer this as it is simple

0 Karma

akocak
Contributor

your welcome

0 Karma
Get Updates on the Splunk Community!

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...