Dashboards & Visualizations

graphing input rates

danp
New Member

Hello,

I'm interested in creating a chart  or dashboard to graph the rates of change for either my inputs, sources, hosts, indexes and source types.

Just not sure where to start query-wise and guess once I have a base query I can modify it to create the others.

Thanks for any help,

Dan

 

Labels (1)
0 Karma

tscroggins
Champion

The management console searches bundled with Splunk Enterprise provide examples of working with metrics.log data. From Settings > Management Console, navigate to Indexing > License Usage > Historic License Usage.

If your category of interest is squelched, you can summarize over indexes directly using e.g. tstats:

| tstats count where index=main earliest=-7d@d latest=@d by _time span=1d host
| streamstats current=f last(count) as previous_count
| eval percent_change=100*(count-previous_count)/count
| where NOT isnull(percent_change)

You could alternatively look at third-party solutions, e.g. Meta Woot! by @DiscoveredIntel.

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Tiling

This puzzle (first published here) is based on finding groups of tessellated tiles (inspired by floor tiles I ...

SOK it to Me: Top 3 Benefits of Using Splunk Operator on Kubernetes that’ll Make ...

    Thursday, July 9, 2026  |  11:00AM–12:00PM PDT Duration: 1 hour (includes Q&A) Managing can feel like a ...

Upgrade Prep for 10.4, Network Observability Deep Dives, and More from Splunk Lantern

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...