Splunk Search

Table query

ltalhouarne
Engager

I cannot seem to find the right query for getting the following (table):

Time | field 1 | field 2 | field 3

2016-03-11 11:18:45 | 01 | 02 | 03

from:

"Got an error: 010203"

This is what I have tried so far:

rex "Got an error: (?<field1>(01))(?<field2>(02))(?<field3>(03)) | table _time field1 field2 field3

Tags (1)
0 Karma
1 Solution

Richfez
SplunkTrust
SplunkTrust

The rex you'll want would be

| rex "Got an error:\s+(?<field1>\d{2})(?<field2>\d{2})(?<field3>\d{2})"

Those are \d for digit, {2} exactly two of them.

Like in this run-anywhere example:

| gentimes start=3/1/2016 end=3/2/2016 | eval test="Got an error: 010203" | rex field=test "Got an error:\s+(?<field1>\d{2})(?<field2>\d{2})(?<field3>\d{2})"

View solution in original post

Richfez
SplunkTrust
SplunkTrust

The rex you'll want would be

| rex "Got an error:\s+(?<field1>\d{2})(?<field2>\d{2})(?<field3>\d{2})"

Those are \d for digit, {2} exactly two of them.

Like in this run-anywhere example:

| gentimes start=3/1/2016 end=3/2/2016 | eval test="Got an error: 010203" | rex field=test "Got an error:\s+(?<field1>\d{2})(?<field2>\d{2})(?<field3>\d{2})"
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!

Mile High Learning with Splunk University, Denver, Colorado

If Denver is known for its mile-high elevation, Splunk University is about to raise the bar on technical ...

IT Service Intelligence 5.0 Series: Your Guide to the June Launch

We are excited to announce the June release of Splunk IT Service Intelligence (ITSI) 5.0. This update ...

Agent Mode Engaged! Enchaining Agentic Operations with Splunk AI Assistant 2.0

    Are you ready to transform how your team handles complex data requests? We invite you to our upcoming ...