Skip to content

alepez/gauges

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gauges

A dashboard for real-time data visualization.

gauges preview

Install

If you have a rust toolchain, just clone this project and from the root directory:

cargo install --path .

Usage

Create a gauges.toml file (see example) and launch gauges-server

Send data

In the examples directory you can find some examples of Rust clients:

  • canbus: read signals from CAN bus and send them to gauges-server
  • client: generate fake data and send them to gauges-server

You can easily send telemetry data to gauges-server, even without a Rust client.

You just need to open a TCP socket and send some json message with newline delimiter.

Example, from bash:

while sleep 1; do
  echo "{\"record\":{\"value\":{\"Float\":$( date +%S )}},\"id\":{\"Num\":1}}";
done | nc localhost 9999

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published