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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...