Splunk Search

How to append search as new row?

jaj
Path Finder

Given the following query, how can I append the second query so that the results show up as two rows so I can graph the results (in a pie chart).

// This query appends a new search as an additional col but what I really want i a new row.
source=*/blah/the.log "labelData= " | stats count as NOMATCHES
| appendcols [search source=*/blah/the.log labelData!="" | stats count as MATCHES ]

Tags (2)
1 Solution

yannK
Splunk Employee
Splunk Employee

try the append instead of appendcols

View solution in original post

yannK
Splunk Employee
Splunk Employee

try the append instead of appendcols

jaj
Path Finder

single query is exactly what I was looking for...I just what i was looking for...the labelData= was messing my query up as I couldn't query it by null or by labelData="". This worked awesome! Thanks!

0 Karma

yannK
Splunk Employee
Splunk Employee

but you could also do all in a single search with an eval or a case and define your own field.

example

source=*/blah/the.log "labelData= " OR labelData!=""
| eval label=if(isnull(labelData),"nomatch","match")
| stats count by label

somesoni2
Revered Legend

just use "append" instead of "appendcols"

Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...