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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...