Splunk Search

Percent timechart

Camilleri
Engager

I'm currently using this query to display a chart with two lines: the TotalItems and the number of Mismatches.

index=app sourcetype="someSource" | timechart count(method) as TotalItems, count(Mismatch) as Mismatches

I need to display the percent of mismatches (mismatches*100/totalItems) of the two lines. Any tips would be really appreciated.

Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Just add an eval statement with your desired calculation, like this

index=app sourcetype="someSource" | timechart count(method) as TotalItems, count(Mismatch) as Mismatches | eval PercentMismtach=round(Mismatches*100/TotalItems,2)

View solution in original post

0 Karma

somesoni2
Revered Legend

Just add an eval statement with your desired calculation, like this

index=app sourcetype="someSource" | timechart count(method) as TotalItems, count(Mismatch) as Mismatches | eval PercentMismtach=round(Mismatches*100/TotalItems,2)
0 Karma

Camilleri
Engager

Thank you!

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