Dashboards & Visualizations

How do I plot 60 days worth of data on the line chart?

shanecifaldi
Loves-to-Learn Everything

I have data coming in from our NetApp storage controllers that shows aggregate space free every day. I need to plot each day's values and then show a chart that shows the last 60 days as dots on a line chart. Management wants to see if storage is trending up or down. i have this search so far but it is messing up and plotting the sum of all of them over 60 days. I want each day's values plotted:

index=netapp_vault_utilization sourcetype=dbx3_netapp_vault_aggregate earliest=-60d@d latest=@h 
| timechart span=60d@d sum(SpaceFree) AS aggregate_space_free_60d by name
| append [search index=netapp_vault_utilization sourcetype=dbx3_netapp_vault_aggregate earliest=-48h@h latest=24h@h
| timechart span=60d@d sum(SpaceFree) AS aggregate_space_free_60d by name]

alt text

It will show the correct amount for the current day but the larger numbers above are a sum of when the oldest event is. How did i fix this? Am i even on the right path?

0 Karma
1 Solution

renjith_nair
Legend

@shanecifaldi,

If you need to see daily growth, set the span to 1d span=1d which will split the data into "day" buckets.

index=netapp_vault_utilization sourcetype=dbx3_netapp_vault_aggregate earliest=-60d@d latest=@h 
| timechart span=1d sum(SpaceFree) AS aggregate_space_free_60d by name
---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

renjith_nair
Legend

@shanecifaldi,

If you need to see daily growth, set the span to 1d span=1d which will split the data into "day" buckets.

index=netapp_vault_utilization sourcetype=dbx3_netapp_vault_aggregate earliest=-60d@d latest=@h 
| timechart span=1d sum(SpaceFree) AS aggregate_space_free_60d by name
---
What goes around comes around. If it helps, hit it with Karma 🙂

shanecifaldi
Loves-to-Learn Everything

Wow..something so simple, duh! Thanks for the help!

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...