Dashboards & Visualizations

Overlay in column chart not showing

jvmerilla
Path Finder

Hi,

I'm trying to create a column chart with overlay but when I set the overlay it is not showing in the chart.

Here's my query:

index="sample_data" sourcetype="management_sampledata.csv" date_month=* Status=* "Ticket Type"=* Priority=*
| eval _time = strptime(Date, "%m/%d/%y")
| eval Month = strftime(_time, "%b")
| stats count(Ticket_No) as Total by Month
| appendcols
    [search index="sample_data" sourcetype="management_sampledata.csv" SLAResolution=Met
    | eval _time = strptime(Date, "%m/%d/%y")
    | eval Month = strftime(_time, "%b")
    | stats count(Ticket_No) as On_time by Month]
| eval percentage = round((On_time/Total)*100)."%"
| table Month, On_time, Total, percentage

And here's the result:

alt text

The percentage is the overlay but it does not show anything.

What could be the problem with this?

Best regards!

0 Karma
1 Solution

renjith_nair
Legend

Try removing the character "%" from your percentage field and let it as int/float.

Happy Splunking!

View solution in original post

renjith_nair
Legend

Try removing the character "%" from your percentage field and let it as int/float.

Happy Splunking!

jvmerilla
Path Finder

It works!

I didn't realize that I just have to remove the "%" character.

Thank you! 🙂

0 Karma
Get Updates on the Splunk Community!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...