Dashboards & Visualizations

How to fetch Error message from raw logs

aditsss
Motivator

Hi Team,

Below is my raw logs:

2023-09-29 14:10:05.598 [ERROR] [Thread-3] CollateralFileGenerator - *****************************************FAILURE in sending control file collateral files to ABS Suite!!!*****************************************

I want to separate "FAILURE in sending control file collateral files to ABS Suite!!!" as my ERROR message 

Can someone guide me on this

Labels (3)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Use the rex command to extract the message.

| rex "\*+(?<ERROR>[^\*]+)"

 This regex takes everything between asterisks and puts it into the ERROR field.

---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Use the rex command to extract the message.

| rex "\*+(?<ERROR>[^\*]+)"

 This regex takes everything between asterisks and puts it into the ERROR field.

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Simplifying the Analyst Experience with Finding-based Detections

    Splunk invites you to an engaging Tech Talk focused on streamlining security operations with ...

[Puzzles] Solve, Learn, Repeat: Word Search

This challenge was first posted on Slack #puzzles channelThis puzzle is based on a letter grid containing ...

[Puzzles] Solve, Learn, Repeat: Advent of Code - Day 4

Advent of CodeIn order to participate in these challenges, you will need to register with the Advent of Code ...