
A command line tool for Monibot - Web App monitoring for developers
https://monibot.io
Download
Download a pre-built linux/amd64 binary from here:
https://github.com/cvilsmeier/moni/releases/latest
Install
If you do not want to download a pre-built binary, you
can install moni from the command line. You need
Go 1.20 or higher, see https://go.dev/
$ go install github.com/cvilsmeier/moni
Build
You can build moni from the command line. You need
Go 1.20 or higher. For installing Go, see https://go.dev/
$ git clone https://github.com/cvilsmeier/moni
$ cd moni/
$ go build .
$ ./moni
Usage
$ moni help
Moni - A command line tool for https://monibot.io
Usage
moni [flags] command
Flags
-url
Monibot URL, default is "https://monibot.io".
You can set this also via environment variable MONIBOT_URL.
-apiKey
Monibot API Key, default is "".
You can set this also via environment variable MONIBOT_API_KEY (recommended).
You can find your API Key in your profile on https://monibot.io.
Note: For security, we recommend that you specify the API Key
via MONIBOT_API_KEY, and not via -apiKey flag. The flag will show up in
'ps aux' outputs and can be eavesdropped.
-trials
Max. Send trials, default is 12.
You can set this also via environment variable MONIBOT_TRIALS.
-delay
Delay between trials, default is 5s.
You can set this also via environment variable MONIBOT_DELAY.
-sampleInterval
Machine sample interval, default is 5m.
You can set this also via environment variable MONIBOT_SAMPLE_INTERVAL.
This flag is only relevant for the 'sample' command.
-v
Verbose output, default is false.
You can set this also via environment variable MONIBOT_VERBOSE ('true' or 'false').
Commands
ping
Ping the Monibot API.
watchdogs
List watchdogs.
watchdog <watchdogId>
Get watchdog by id.
heartbeat <watchdogId>
Send a heartbeat.
machines
List machines.
machine <machineId>
Get machine by id.
sample <machineId>
Send resource usage (load/cpu/mem/disk) samples for machine.
Moni consults various files (/proc/loadavg, /proc/cpuinfo, etc.)
and commands (/usr/bin/free, /usr/bin/df, etc.) to calculate
resource usage. It currently supports linux only.
Moni will stay in background and keep sampling in specified
sample interval, default 5m, see flag 'sampleInterval.
metrics
List metrics.
metric <metricId>
Get and print metric info.
inc <metricId> <value>
Increment a Counter metric.
Value must be a non-negative 64-bit integer value.
set <metricId> <value>
Set a Gauge metric.
Value must be a non-negative 64-bit integer value.
config
Show config values.
version
Show moni program version.
sdk-version
Show the monibot-go SDK version moni was built with.
help
Show this help page.
Exit Codes
0 ok
1 error
2 wrong user input
Changelog
v0.0.1
- add disk read/write sampling
- add network recv/send sampling
v0.0.0