Splunk Search

Extract value within quotes and plot on timechart

skenkere
New Member

Hi,

I am very new to splunk and i have data like this below:

"salary": "2000"

I have 1000's of events like this, I would like to extract only the integer 2000 and plot the value on timechart.

source="tcp:8050"  | search salary| rex _raw=".*(?P<sal>\d+).*" | timechart count as "SAL"

The above search is only returning the number of events having salary but not returning the actual value of 2000.
Requests help to achieve this!!!
Thanks!!

0 Karma

sbbadri
Motivator

@skenkere
try this,

your search here | rex field=_raw "\"salary\":\s+\"(?P<\d+>)\"" | timechart count by sal_value

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, ...