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!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had 3 releases of new security content via the Enterprise Security ...

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...