Splunk Search

How to stats ratio based on two fields

cheriemilk
Path Finder

Hi team,

I have a below sample raw events in splunk.

2020-11-30 19:15:26,726 ratingEnabled="[performance]"

2020-11-30 15:59:13,827 ratingEnabled="[objective,competency]" ratingEnabledGuideline="[objectiveGuideline]"

2020-11-30 05:34:40,986 ratingEnabled="[performance]" ratingEnabledGuideline="[performanceGuideline]"

stats requirement:

I want to get a ratio that enabled guideline per each rating. For example: analyze above sample events,

1. there are 3 ratings enabled(refer to ratingEnabled field): performance, objective and competency

2. there're 2 ratings enabled guideline(refer to ratingEnabledGuideline field): objective and performance

So the expected result I want splunk to return is:

 

ratingEnabledcountcount - enabled Guidelineratio - enabled guideline
performance2150%
objective11100%
competency100%

 

How to stats the ratio in this scenario?

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
| rex max_match=0 field=ratingEnabled "(?<ratingEnabled>[^\[,\]]+)"
| mvexpand ratingEnabled
| rex field=ratingEnabledGuideline "(?<guideline>[^\[]+)Guideline"
| eval guided=if(ratingEnabled=guideline,1,0)
| stats count sum(guided) as guided by ratingEnabled
| eval ratio=guided*100/count

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust
| rex max_match=0 field=ratingEnabled "(?<ratingEnabled>[^\[,\]]+)"
| mvexpand ratingEnabled
| rex field=ratingEnabledGuideline "(?<guideline>[^\[]+)Guideline"
| eval guided=if(ratingEnabled=guideline,1,0)
| stats count sum(guided) as guided by ratingEnabled
| eval ratio=guided*100/count
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Data Persistence in the OpenTelemetry Collector

This blog post is part of an ongoing series on OpenTelemetry. What happens if the OpenTelemetry collector ...

Introducing Splunk 10.0: Smarter, Faster, and More Powerful Than Ever

Now On Demand Whether you're managing complex deployments or looking to future-proof your data ...

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...