Splunk Search

I want create table view

abi2023
Path Finder

I have SPL
index=main state=open | stats count(state) as open by risk_rating | rename risk_rating as state | addtotals col=t row=f labelfield=state | append [ search index=main state=closed | stats count(state) as closed by risk_rating_after | rename risk_rating_after as state | addtotals col=t row=f labelfield=risk 

I want crate table like below but risk_rating_after field only has Sustainable value so when I do selfjoin state 
it only has sustainable. I try join but it did not get result. It any way I can achieve this result.  

Many thank you in advance. 


stateCritical ModerateSevereSustainableTotal
Open124512
Close00066

Total                              1                                   2                                   4                                   11                                18

Labels (3)
0 Karma

yeahnah
Motivator

Hi @abi2023 

This is a good example of using the chart command.  Here's a run anywhere example (based of dummy events derived from your example SPL)

| makeresults | eval _raw="state, risk_rating
open, Critical
open, Moderate
open, Severe
open, Sustainable
close, Critical
close, Moderate
close, Sustainable"
| multikv forceheader=1
| table state risk_rating
  ``` ^^^ above is just creating dummy example events ^^^ -> the SPL below creates the table output ```
| chart count OVER state BY risk_rating
| sort - state
| addtotals
| addcoltotals labelfield=state label="Total"

 Hope this helps

0 Karma
Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...