- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
how to extract fields from json format event?
nehamvinchankar
Path Finder
12-05-2023
05:46 AM
Hi all, i want to extract fields from event which is in json format
INFO [processor: anchsdgeiskgcbc/5; event: 1-57d28402-9058-11ee-83b7-021a6f9d1f1c] : DETAILS: [
{
"ERROR_MESSAGE": "\nError: abchdvshsuaajs.\n",
"NUMBER": "123r57",
"DB_TIMESTAMP": "2023-11-30"
},
{
"ERROR_MESSAGE": "\nError: ehwegagsuabajehss.\n",
"NUMBER": "63638w82u",
"DB_TIMESTAMP": "2023-11-30"
},
and similarly we have these error data in one event
Fields to be extracted -
ERROR_MESSAGE
NUMBER
DB_TIMESTAMP
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ITWhisperer

SplunkTrust
12-05-2023
06:19 AM
Given that this doesn't appear to be wholly correct JSON, you could start with something like this
| rex "DETAILS: (?<details>\[.*\])"
| spath input=details
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
nehamvinchankar
Path Finder
12-05-2023
07:09 AM
no this is not working
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ITWhisperer

SplunkTrust
12-05-2023
07:19 AM
What results do you get then?
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
nehamvinchankar
Path Finder
12-05-2023
07:29 PM
details field is blank
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ITWhisperer

SplunkTrust
12-06-2023
12:39 AM
Try this
| rex "(?ms)DETAILS: (?<details>\[.*\])"
| spath input=details
