Dashboards & Visualizations

Is it possible to have Single value with Trendline for Percentage When I am using eval to calculate Percentage?

abi2023
Path Finder

index=main sourcetype=_json status="True" | stats count(status) as True by name | append [| search index=main sourcetype=json status="False" | stats count(status) as False by name]  | append [| search index=main sourcetype=json status="*" | stats count(status) as Total by name] | stats sum(True) as True sum(False) as False sum(Total) as Total max(Performance) as Performance by name | eval Percentage=round(((True/Total)*100),0) 
| fields  Percentage

Is it possible to show trendline and if Percentage up or down compart to last month.


0 Karma

VatsalJagani
SplunkTrust
SplunkTrust

@abi2023 - You would use timechart instead of stats with span=1mon.

But you are using by name, groupby field won't work with a single value chart. You could though a table with trendlines if you want to use groupby. You can find example of this inside the App called Splunk Dashboard Examples on Splunkbase.

 

I hope this helps!!!

0 Karma
Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...