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!

Now Available: Cisco Talos Threat Intelligence Integrations for Splunk Security Cloud ...

At .conf24, we shared that we were in the process of integrating Cisco Talos threat intelligence into Splunk ...

Preparing your Splunk Environment for OpenSSL3

The Splunk platform will transition to OpenSSL version 3 in a future release. Actions are required to prepare ...

Easily Improve Agent Saturation with the Splunk Add-on for OpenTelemetry Collector

Agent Saturation What and Whys In application performance monitoring, saturation is defined as the total load ...