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!

Incident Response: Reduce Incident Recurrence with Automated Ticket Creation

Culture extends beyond work experience and coffee roast preferences on software engineering teams. Team ...

Splunk Classroom Chronicles: Training Tales and Testimonials (Episode 2)

Welcome to the "Splunk Classroom Chronicles" series, created to help curious, career-minded learners get ...

Index This | I am a number but I am countless. What am I?

January 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  Happy New Year! We’re ...