mirror of
https://git.alemi.dev/dashboard.git
synced 2024-11-10 02:19:19 +01:00
chore: added some more details
This commit is contained in:
parent
9b7ba8d4f7
commit
058553506d
1 changed files with 17 additions and 7 deletions
24
README.md
24
README.md
|
@ -10,6 +10,15 @@ This software periodically (customizable interval) makes a GET request to given
|
||||||
Each panel displays all points gathered respecting limits, without redrawing until user interacts with UI or data changes.
|
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.
|
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
|
## Features
|
||||||
* parse JSON apis with [JQL syntax](https://github.com/yamafaktory/jql)
|
* parse JSON apis with [JQL syntax](https://github.com/yamafaktory/jql)
|
||||||
* embedded SQLite, no need for external database
|
* embedded SQLite, no need for external database
|
||||||
|
@ -20,14 +29,15 @@ If no "x" query is specified, current time will be used (as timestamp) for each
|
||||||
* reduce data points with average or sampling
|
* reduce data points with average or sampling
|
||||||
* per-source query interval
|
* per-source query interval
|
||||||
* light/dark mode
|
* light/dark mode
|
||||||
|
* log panel endlessly tracking errors
|
||||||
|
* tiny performance impact
|
||||||
|
|
||||||
## Usage
|
## Drawbacks
|
||||||
This program will work on a database stored in `$HOME/.local/share/dashboard.db`. By default, nothing will be shown.
|
* Log panel has no limit, thus very long runtimes will make it slower
|
||||||
To add sources or panels, toggle edit mode (top left). Once in edit mode you can:
|
* Being monolithic, this project doesn't scale well with large data needs
|
||||||
* Add panels (top bar)
|
* Untested on Windows and MacOS
|
||||||
* Add sources (in source sidebar, bottom)
|
* No limit on points displayed might slow down the UI, use the `reduce` feature
|
||||||
* Edit panels (name, height, display options)
|
* All fields are editable at the same time
|
||||||
* Edit sources (name, color, query, panel)
|
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
`cargo build --release`, then drop it in your `~/.local/bin`. Done, have fun hoarding data!
|
`cargo build --release`, then drop it in your `~/.local/bin`. Done, have fun hoarding data!
|
||||||
|
|
Loading…
Reference in a new issue