Splunk Search

rex extract number

indeed_2000
Motivator

Hi

2022-01-04 23:10:43,224 INFO [APP] sessionDestroyed, Session Count: 0
2022-01-04 23:12:34,238 INFO [APP] sessionCreated, Session Count: 1

2022-01-04 23:13:43,224 INFO [APP] sessionDestroyed, Session Count: 10
2022-01-04 23:14:34,238 INFO [APP] sessionCreated, Session Count: 7

 

extract output                              sessionCreated            sessionDestroyed

2022-01-04 23:10:43                                                                                0

2022-01-04 23:12:34                           1

2022-01-04 23:13:43                                                                               10

2022-01-04 23:14:34                            7

 

Labels (1)
0 Karma

isoutamo
SplunkTrust
SplunkTrust

Hi

You can try this

| rex "sessionCreated, Session Count: (?<sessionCreated>\d+)" 
| rex "sessionDestroyed, Session Count: (?<sessionDestroyed>\d+)"
| table _time sessionCreated sessionDestroyed

r. Ismo 

0 Karma

indeed_2000
Motivator

How about single rex?

0 Karma

isoutamo
SplunkTrust
SplunkTrust
Also that is working, but as you want those to separate variables it's clearer to use two (IMHO)
0 Karma

indeed_2000
Motivator

Actually need to show them on timechart but want extract fields with single rex.

any idea?

 Thanks 

0 Karma

isoutamo
SplunkTrust
SplunkTrust

Maybe this?

| makeresults
| eval _raw="2022-01-04 23:10:43,224 INFO [APP] sessionDestroyed, Session Count: 0
2022-01-04 23:12:34,238 INFO [APP] sessionCreated, Session Count: 1
2022-01-04 23:13:43,224 INFO [APP] sessionDestroyed, Session Count: 10
2022-01-04 23:14:34,238 INFO [APP] sessionCreated, Session Count: 7"
| multikv noheader=t
|  rex "^(?<dt>\d{4}-\d+-\d+ \d+:\d+:\d+,\d+) "
| eval _time = strptime(dt, "%F%T,%3Q")
```Above generates sample data```
| rex "(sessionCreated, Session Count: (?<sessionCreated>\d+))|(sessionDestroyed, Session Count: (?<sessionDestroyed>\d+))"
| table _time sessionCreated sessionDestroyed

indeed_2000
Motivator

Thanks, is it possible to extract these fields more efficiently?

 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

What is your definition of "efficiently"?

@isoutamo has given you an answer without you having to work it out yourself; it is a single rex, as you asked for; what can be more efficient than that? 😀😀😀

0 Karma

indeed_2000
Motivator

I try this spl on large dataset and take long time to extract it, so I'm looking for more efficient way to do this.

 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Can you extract the event type and count at indexing time?

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!

(re)Introducing the Splunk Community Champions + 2026 – 2027 Splunk MVPs ...

This program exists as a channel to empower and recognize Splunk advocates and help supercharge initiatives to ...

Introducing the 2026 - 2027 SplunkTrust cohort!

The goal of the SplunkTrust™ membership has historically been to acknowledge and recognize those who go above ...

Pro Tips for .conf26: How to Prep Like a Splunk Veteran

There’s no shortage of incredible content lined up for .conf26 in Denver, from deep-dive technical sessions ...