Stylus (style + status) is a lightweight status page for infrastructure and networks. Configure a set of bash scripts that test the various parts of your infrastructure, set up visualizations with minimal configuration, and Stylus will generate you a dashboard for your system.
Stylus is easy to install and run. Docker images are available for the most common platforms.
mkdir ~/stylus
docker run --name stylus -p 8000:8000 -v ~/stylus/:/srv mmastrac/stylus:latest init
docker run --name stylus -p 8000:8000 -v ~/stylus/:/srv mmastrac/stylus:latest
You can also run Stylus without Docker by installing the stylus
binary
from crates.io.
cargo install stylus
stylus init ~/stylus
stylus run ~/stylus
For more information, see the book page on running Stylus here.
Example config.yaml
for a Stylus install. This configuration attaches
metadata to the various states and has selectors that apply to both and HTML
(for a status table) and CSS (for a status SVG image).
version: 1
server:
port: 8000
static: static/
monitor:
dir: monitor.d/
css:
# Arbitrary metadata can be associated with the four states
metadata:
blank:
color: "white"
red:
color: "#fa897b"
yellow:
color: "#ffdd94"
green:
color: "#d0e6a5"
rules:
# Multiple CSS rules with handlebars replacements are supported
- selectors: "#{{monitor.id}}"
declarations: "
background-color: {{monitor.status.css.metadata.color}} !important;
"
The monitors are configured by creating a subdirectory in the monitor directory
(default monitor.d/
) and placing a config.yaml
in that monitor subdirectory.
# ID is optional and will be inferred from the directory
id: router-1
test:
interval: 60s
timeout: 30s
command: test.sh
The test scripts are usually pretty simple. Note that the docker container ships
with a number of useful utilities, but you can consider manually installing
additional packages (either creating an additional docker container or manually
running alpine's apk
tool inside the container) to handle your specific cases.
Unless you have a particularly lossy connection, a single ping should be enough to test whether a host is up:
#!/bin/bash
set -xeuf -o pipefail
ping -c 1 8.8.8.8
For hosts with services that may be up or down, you may want to use cURL to test whether the service itself is reachable.
#!/bin/bash
set -xeuf -o pipefail
curl --retry 2 --max-time 5 --connect-timeout 5 http://192.168.1.1:9000
Tools such as jq
, sed
, or awk
can be used for more advanced tests (ie:
APIs). If needed, ssh can be used to connect to hosts and remote tests can be
executed. snmpwalk
and snmpget
can also be used to construct tests for
devices that speak SNMP.
If you have an existing grafana instance, you can use that as a monitoring source. See the Grafana HTTP API documentation for more information.
Stylus is very lightweight, both from a processing and memory perspective.
On a Raspberry Pi 1B, Stylus uses less than 1% of CPU while refreshing CSS at a rate of 1/s. On a 2015 MacBook Pro, Stylus uses approximately 0.1% of a single core while actively refreshing.
Stylus uses approxmately 2MB to monitor 15 services on a Raspberry Pi (according to ps_mem).
When not actively monitored, Stylus uses a nearly unmeasurable amount of CPU and is pretty much limited by how heavyweight your test scripts are.
Note that this project was originally written using deno, but was rewritten in
Rust to support Raspberry Pis. The original deno source is available in the
deno
branch.