Splunk Search

How to search the percentage of values in a field?

jsmith_splunk
Splunk Employee
Splunk Employee

I'm trying build a bar chart from an asset list that shows by bunit what percentage of a field called last has a value in it.
I used isnotnull to create a field with yes/no values, but I'm not sure how to show the percentage.

| inputlookup my_assets.csv | eval percentage=if(isnotnull(last),"yes","no") 
0 Karma
1 Solution

somesoni2
Revered Legend

You're in right direction. Try like this (using just the count will give total number of rows and count(field) will give count where field has a value)

 | inputlookup my_assets.csv | stats count as total count(last) as count by bunit | eval percent = round(count/total,2)

View solution in original post

somesoni2
Revered Legend

You're in right direction. Try like this (using just the count will give total number of rows and count(field) will give count where field has a value)

 | inputlookup my_assets.csv | stats count as total count(last) as count by bunit | eval percent = round(count/total,2)

jsmith_splunk
Splunk Employee
Splunk Employee

That was much easier than the direction I was going.
Thank you very much!

0 Karma

somesoni2
Revered Legend

Can you provide available fields and some sample data from the lookup and expected output?

0 Karma

jsmith_splunk
Splunk Employee
Splunk Employee

dns, nt_host, ip, owner, bunit, category, last
servera.mydomain.com,servera,1.1.1.1,Mark,groupa,linux,6/1/2016 12:08:34
serverb.mydomain.com,serverb,1.1.12,Brian,groupb,windows,,

I can't tell if I'm on the right track or not, I've built the query out to this, but I'm not getting a return for the field count

| inputlookup my_assets.csv | eval hasvalue=if(isnotnull(last),"yes","no") | stats sum(hasvalue=yes) as count by bunit | eventstats sum(hasvalue=no) as total | eval percent = round(count/total,2)
0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...