Splunk Search

need to extract multiple values for a field in a custom event

ssyed2009
New Member

The whole event is coming in as below. Need eventtype to extract "event_type={type}" and size to extract all the values in size
{"event_type":"event_type=adsad","size":"128844"}
{"event_type":"event_type=dsadsa","size":"388719"}
{"event_type":"event_type=blue","size":"1841504"}
{"event_type":"event_type=bluecoat","size":"221712725587"}
{"event_type":"event_type=casmdsad","size":"12356947232"}
{"event_type":"event_type=cisco-ddddd","size":"1553892585172"}
{"event_type":"event_type=cisco-edsd","size":"42949321020"}
{"event_type":"event_type=cyberark-dsds","size":"77274472"}
{"event_type":"TOTAL","size":"4314601844158"}

Tags (1)
0 Karma

ivanreis
Builder

please try this one:
"event_type=(?\w[a-zA-Z-]+)\D+(?\d*)

https://regex101.com/r/4HkCyb/1
very good site to test regex expressions -> www.regex101.com

0 Karma

ivanreis
Builder

Sorry I pasted the wrong regex
"event_type=(?\w[a-zA-Z-]+)\D+(?\d*)

0 Karma

sduff_splunk
Splunk Employee
Splunk Employee
| rex max_match=9999 "event_type=(?<event_type>[^\"]+)\",\"size\":\"(?<size>\d+)\""
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...