my custom data collector and visualization board
Find a file
2022-11-14 01:46:17 +01:00
assets build: added Trunk and template files for wasm 2022-11-01 05:28:24 +01:00
migration feat: db migration to remove query_x and query_y 2022-11-07 00:49:22 +01:00
src fix: db name shows correctly instead of mirroring db uri 2022-11-14 01:46:17 +01:00
.editorconfig style: use tabs 2022-06-13 02:35:51 +02:00
.gitignore build: added Trunk and template files for wasm 2022-11-01 05:28:24 +01:00
.rustfmt.toml style: use tabs 2022-06-13 02:35:51 +02:00
Cargo.toml chore: remove "persistance" feature 2022-11-10 21:52:34 +01:00
index.html build: added Trunk and template files for wasm 2022-11-01 05:28:24 +01:00
LICENSE Initial commit 2022-06-03 02:01:19 +02:00
README.md chore: added some more details 2022-09-14 13:41:35 +02:00
Trunk.toml build: added Trunk and template files for wasm 2022-11-01 05:28:24 +01:00

dashboard

screenshot A data aggregating dashboard, capable of periodically fetching, parsing, archiving and plotting data.

Name

Do you have a good name idea for this project? Let me know!

How it works

This software periodically (customizable interval) makes a GET request to given URL, then applies all metric JQL queries to the JSON output, then inserts all extracted points into its underlying SQLite. Each panel displays all points gathered respecting limits, without redrawing until user interacts with UI or data changes. If no "x" query is specified, current time will be used (as timestamp) for each sample "x" coordinate, making this software especially useful for timeseries.

Usage

This program will work on a database stored in $HOME/.local/share/dashboard.db. By default, nothing will be shown. To add sources or panels, toggle edit mode (top left). Once in edit mode you can:

  • Add panels (top bar)
  • Add sources (in source sidebar, bottom)
  • Edit panels (name, height, display options)
  • Edit sources (name, color, query, panel) Each change is effective as soon as you type it, but won't persist a restart if you don't "save" it. Just close and reopen if you mess something up!

Features

  • parse JSON apis with JQL syntax
  • embedded SQLite, no need for external database
  • import/export metrics data to/from CSV
  • split data from 1 fetch to many metrics
  • customize source color and name, toggle them (visibility or fetching)
  • customize panels (size, span, offset)
  • reduce data points with average or sampling
  • per-source query interval
  • light/dark mode
  • log panel endlessly tracking errors
  • tiny performance impact

Drawbacks

  • Log panel has no limit, thus very long runtimes will make it slower
  • Being monolithic, this project doesn't scale well with large data needs
  • Untested on Windows and MacOS
  • No limit on points displayed might slow down the UI, use the reduce feature
  • All fields are editable at the same time

Installation

cargo build --release, then drop it in your ~/.local/bin. Done, have fun hoarding data!