Splunk Search

Help in timechart

vrmandadi
Builder

Hello I have the below two queries

QUERY1

index=abc  NOT *UNKNOWN*  HTTP_Code=404|stats count by HTTP_Code  AS "ACTUAL COUNT"

OUTPUT

HTTP_COde      Count
404              50

QUERY2

 index=abc *UNKNOWN* HTTP_Code=404 |stats count by HTTP_Code as UNKNOWN_COUNT

OUTPUT

HTTP_COde      Count
404              80

I am trying to do a timechart ,where in the chart one line shows the unknown count and other shows the actual count .

Thanks in advance

0 Karma

woodcock
Esteemed Legend

Like this:

index=abc
| timechart count(eval(searchmatch("NOT *UNKNOWN*"))) AS ActualCount count(eval(searchmatch("*UNKNOWN*"))) AS UnknownCount BY HTTP_Code

OR
Like this:

index=abc HTTP_Code=404
| timechart count(eval(searchmatch("NOT *UNKNOWN*"))) AS ActualCount_404 count(eval(searchmatch("*UNKNOWN*"))) AS UnknownCount_404
0 Karma

vrmandadi
Builder

It did not work ,I tried using append and it worked

index=abc UNKNOWN |timechart span=1h count(HTTP_Code) as "UNKNOWN 404 Count" |append[search index=abc NOT UNKNOWN HTTP_Code=404 |timechart span=1h count(HTTP_Code) as "OTHER 404 Count"]

0 Karma

somesoni2
Revered Legend

GIve this a try

index=abc HTTP_Code=404 | eval Unknown=if(searchmatch("UNKNOWN"),1,0) | eval Actual=abs(1-Unknown) 
| timechart sum(Unknown) as UNKNOWN_COUNT sum(Actual) as ACTUAL_COUNT
0 Karma

vrmandadi
Builder

It did not work ,I tried using append and it worked

index=abc UNKNOWN |timechart span=1h count(HTTP_Code) as "UNKNOWN 404 Count" |append[search index=abc NOT UNKNOWN HTTP_Code=404 |timechart span=1h count(HTTP_Code) as "OTHER 404 Count"]

0 Karma
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 ...