Splunk Search

How to remove leading periods from a field?

ajdyer2000
Path Finder

Hi I have a search that returns the following

. Adobe Acrobat XI Pro DSC

.. Adobe Flash Player ActiveX DSC
... Adobe Flash Player NPAPI
... Adobe Reader XI (..)
.. Adobe Shockwave Player
... Atmel Touchscreen Power

Is there a command that could get rid of the leading periods? They go from just one period up to three of them

0 Karma

gokadroid
Motivator

Try this please using rex assuming your fieild is called myField and data of interest will be collected in field called stringOfInterest :

your query to return events
| rex field=myField "\.+(?<stringOfInterest>.*)"
| table stringOfInterest

See Extraction here

0 Karma

jtacy
Builder

Sure, here's a standalone example of what you could do with the rex command:

| gentimes start=-1 | eval xyzzy=".. Adobe Shockwave Player" | rex field=xyzzy mode=sed "s/^\.+(\s+)?//"

This will remove any leading periods and whitespace after the periods. There are probably faster ways to do it but this should work pretty well. Good luck!

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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 GA in US-AWS!

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