Splunk Dev

replacing \| before generating the report

abhayneilam
Contributor

Hi ,
want to replace '|' character to '\ |' ( Please ignore the single quotes ) before generating my the reports.

I have data as :

abhay|26|c:\data\good|kolkata|wow

this is already imported , I want to just replace | to \ | before generating the report

0 Karma

sowings
Splunk Employee
Splunk Employee

Try either the replace search command, or eval's replace function.

If the line you've cited is your raw data, the field you'll need to replace on is _raw.

sowings
Splunk Employee
Splunk Employee

Let's figure out why your props aren't working. The usb_trans field extraction rule you've defined should work just fine, if the data is pipe-delimited. So the next question is whether your data is being indexed with the sourcetype "testing". You can check the metadata with a search like | metadata type=sourcetypes index=<your_index>. If it's not sourcetyped as "testing", then you'll have to adjust your inputs.conf.

Note that | is a special character in sed, as is \, so you'd have to escape the | with \|, and the \ in \| with extra backslashes \\|.

0 Karma

abhayneilam
Contributor

my props.conf contains the following :

[testing]
SHOULD_LINEMERGE = false
KV_MODE = none
REPORT-usb_trans = usb_trans
SEDCMD-usb=sed s/|/\ |/g

and my transforms is like :

[usb_trans]
DELIMS="|"
FIELDS= "NAME", "EMPID", "DIRECTORY", "LOCATION", "APPRE"

Now, tell me how '|' can be replaced with '\ |' , abouve configuration line is not working

0 Karma

sowings
Splunk Employee
Splunk Employee

Please begin with a clearer statement of the problem you're trying to solve.

"Generating the reports" to Splunkers sounds like a search time thing, with the answer I gave above.

If you want to change the data before it goes into Splunk you'll want to use an index-time transform like SEDCMD in props.conf.

0 Karma

abhayneilam
Contributor

but I want to replace data before being imported, my data is '|' separated if I dont replace '|' with '\ |' then my values are not coming in the proper field,
Please help

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...