Splunk Search

Need help in handling unstructured data

gopee_splunk
New Member

I have an Log File as below

starting process 1 (each line is a sinle event in splunk))
processing steps
.
.
.
ending process 1

starting process2
processing steps
.
.
.
ending process 2

starting process3
processing steps
.
.
.
ending process 3

I would like to get data as below.Could you please help me?

Process1 start_time end_time
Process2 start_time end_time
Process3 start_time end_time

0 Karma

adityapavan18
Contributor

Try this way. create a field to extract processid.

Then try something like | stats latest(_time) as endtime earliest(_time) as starttime by processid.

0 Karma

esix_splunk
Splunk Employee
Splunk Employee

You should fix this as a data source, and parse this correctly as the data is indexed. That will save you time and headaches. You'll need to create a datasource for this via props..

... props.conf ..

      [mymultiline:sourcetype]
      SHOULD_LINEMERGE = True
      BREAK_ONLY_BEFORE = starting process \d+

Add that and restart splunk, add the data again.

BREAK_ONLY_BEFORE = is a regex that will match for the beginning of the event. Adjust this to what your the first line of your event really looks like.

You can find more details on the options for setting this at data ingestion time via the props.conf spec file at http://docs.splunk.com/Documentation/Splunk/latest/Admin/Propsconf.

0 Karma

lguinn2
Legend

Try this

"starting process" OR "ending process"
| eval starttime=if(match(_raw,"starting process"),_time,null())
| eval endtime = if(match(_raw,"ending process"),_time,null())
| stats max(starttime) as "Start Time" max(endtime) as "End Time" by process_id
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!

At .conf26, Don’t Just See What’s Next. Help Shape It at Innovation Labs.

Long before a new capability reaches the keynote stage, it begins as an idea waiting to be tested. At ...

Forwarder Topology Guidance: Intermediate HF vs Intermediate UF

Why Universal Forwarders Should Not Be Used as Intermediate Forwarders A practical Splunk forwarding topology ...

Data Management Digest – August 2026

Data Management Digest   Welcome to the August 2026 edition of Data Management Digest! August was a big month ...