Splunk Search

Can you help me to extract a specific event from a log?

jip31
Motivator

Hello

In a report, i used the code below in order to search for an error code in my events.

But, when a code is found, i want to display the complete line event and not only the code error.

index=main sourcetype="applog"  | rex "Failed Error code : (?<ErrorCode>.*)" |table host ErrorCode

Thanks in advance for your help.

Tags (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Depending on what exactly you're trying to do, there's a few ways to do it.

index=main sourcetype="applog" "Failed Error code : "

index=main sourcetype="applog"  | regex "Failed Error code :"

index=main sourcetype="applog"  | rex "Failed Error code : (?<ErrorCode>.*)" | table host ErrorCode _raw
---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

mstjohn_splunk
Splunk Employee
Splunk Employee

@jip31

Did the answer below solve your problem? If so, please resolve this post by approving it!
If your problem is still not solved, keep us updated so that someone else can help ya. Thanks for posting!

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Depending on what exactly you're trying to do, there's a few ways to do it.

index=main sourcetype="applog" "Failed Error code : "

index=main sourcetype="applog"  | regex "Failed Error code :"

index=main sourcetype="applog"  | rex "Failed Error code : (?<ErrorCode>.*)" | table host ErrorCode _raw
---
If this reply helps you, Karma would be appreciated.
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 ...