Prometheus exporter for the MightyOhm Geiger Counter.
Go to file
finga 599e6b692d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Extend Cargo.toml and Readme.md
2022-04-24 18:28:13 +02:00
.cargo Read from hardcoded serial port 2022-04-23 01:42:02 +02:00
debian Use cargo-deb to build a Debian package 2022-04-24 17:33:09 +02:00
src Add command line arguments 2022-04-23 23:24:38 +02:00
.gitignore Read from hardcoded serial port 2022-04-23 01:42:02 +02:00
.woodpecker.yml ci: Move build_release into default group 2022-04-24 17:59:06 +02:00
Cargo.lock Add command line arguments 2022-04-23 23:24:38 +02:00
Cargo.toml Extend Cargo.toml and Readme.md 2022-04-24 18:28:13 +02:00
README.md Extend Cargo.toml and Readme.md 2022-04-24 18:28:13 +02:00

Exporter for the MightyOhm Geiger Counter status-badge

A Prometheus exporter for the MightyOhm Geiger Counter.

Build

Cargo, the Rust package manager, is used to build this project.

Same architecture as system

Compile it for the same architecture as the build system:

cargo build --release

Cross-compile for amd64 (recent RaspberryPi)

Cross-compile it for the amd64 architecture:

PKG_CONFIG_SYSROOT_DIR=/usr/aarch64-linux-gnu cargo build --target aarch64-unknown-linux-gnu --release

Debian

To build a package for Debian, Raspbian, and so on, cargo-deb can be used.

The package comes with an automatically started and enabled systemd service unit which can be configured via /etc/default/mightyohm-gc-exporter.

Same architecture as system

Build a deb package for the same architecture as the build system:

cargo deb

Cross-compile for amd64 (recent RaspberryPi)

Build a deb package for the amd64 architecture:

PKG_CONFIG_SYSROOT_DIR=/usr/aarch64-linux-gnu cargo deb --target aarch64-unknown-linux-gnu

Usage

USAGE:
    mightyohm-gc-exporter [OPTIONS]

OPTIONS:
    -a, --address <ADDRESS>            The IPv4 or IPv6 address where the metrics are served
                                       [default: 127.0.0.1]
    -b, --baud-rate <BAUD_RATE>        The baudrate of the serial connection [default: 9600]
    -h, --help                         Print help information
    -p, --port <PORT>                  The port where the metrics are served [default: 9111]
    -s, --serial-port <SERIAL_PORT>    The port of the serial device, usually in '/dev/...'
                                       [default: /dev/serial0]
    -t, --timeout <TIMEOUT>            Timeout of the serial connection in ms [default: 1000]
    -V, --version                      Print version information