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
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...

Network to App: Observability Unlocked [May & June Series]

In today’s digital landscape, your environment is no longer confined to the data center. It spans complex ...

SPL2 Deep Dives, AppDynamics Integrations, SAML Made Simple and Much More on Splunk ...

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...