Splunk Search

Extracting the data from Table

varunapj
New Member

Hi All,
I am new to SPLUNK and building dashboards and I have requirement to count the records from the table

  1. No of Approved records index="XXXXX" PRODUCT=100| dedup PCN |stats count(eval(STATUS="A")) AS APPROVED
  2. No of Cancelled records index="XXXXX" PRODUCT=100| dedup PCN |stats count(eval(STATUS="C")) AS APPROVED
  3. No of Pending records index="XXXXX" PRODUCT=100 | stats latest(STATUS) as STATUS | where STATUS="P" --> This is not returning any results.

So, any thoughts on it ?

Thanks in advance.

alt text

Tags (1)
0 Karma

mayurr98
Super Champion

If you want to find a number of pending records then you should write

index="XXXXX" PRODUCT=100 STATUS="P" | stats dc(PCN) as "Pending"

Also if you want all the three requirements in one dashboard then you can try something like this

 index="XXXXX" PRODUCT=100 | stats dc(PCN) by STATUS

let me know if this helps!

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...