# [minitor-go](https://git.iamthefij.com/iamthefij/minitor-go) A minimal monitoring system ## What does it do? Minitor accepts a YAML configuration file with a set of commands to run and a set of alerts to execute when those commands fail. It is designed to be as simple as possible and relies on other command line tools to do checks and issue alerts. ## But why? I'm running a few small services and found Sensu, Consul, Nagios, etc. to all be far too complicated for my usecase. ## So how do I use it? ### Running Install and execute with: ```bash go get github.com/iamthefij/minitor-go minitor ``` If locally developing you can use: ```bash make run ``` It will read the contents of `config.yml` and begin its loop. You could also run it directly and provide a new config file via the `-config` argument. #### Docker You can pull this repository directly from Docker: ```bash docker pull iamthefij/minitor-go:latest ``` The Docker image uses a default `config.yml` that is copied from `sample-config.yml`. This won't really do anything for you, so when you run the Docker image, you should supply your own `config.yml` file: ```bash docker run -v $PWD/config.yml:/app/config.yml iamthefij/minitor-go:latest ``` Images are provided for `amd64`, `arm`, and `arm64` architechtures. Timezone configuration for the container is set by passing the `TZ` env variable. Eg. `TZ=America/Los_Angeles`. ## Configuring In this repo, you can explore the `sample-config.yml` file for an example, but the general structure is as follows. It should be noted that environment variable interpolation happens on load of the YAML file. The global configurations are: |key|value| |---|---| |`check_interval`|Maximum frequency to run checks for each monitor as duration, eg. 1m2s.| |`default_alert_after`|A default value used as an `alert_after` value for a monitor if not specified or 0.| |`default_alert_down`|Default down alerts to used by a monitor in case none are provided.| |`default_alert_up`|Default up alerts to used by a monitor in case none are provided.| |`monitors`|List of all monitors. Detailed description below| |`alerts`|List of all alerts. Detailed description below| ### Monitors All monitors should be listed under `monitors`. Each monitor allows the following configuration: |key|value| |---|---| |`name`|Name of the monitor running. This will show up in messages and logs.| |`command`|Specifies the command that should be executed, either in exec or shell form. This command's exit value will determine whether the check is successful| |`alert_down`|A list of Alerts to be triggered when the monitor is in a "down" state| |`alert_up`|A list of Alerts to be triggered when the monitor moves to an "up" state| |`check_interval`|The interval at which this monitor should be checked. This must be greater than the global `check_interval` value| |`alert_after`|Allows specifying the number of failed checks before an alert should be triggered| |`alert_every`|Allows specifying how often an alert should be retriggered. There are a few magic numbers here. Defaults to `-1` for an exponential backoff. Setting to `0` disables re-alerting. Positive values will allow retriggering after the specified number of checks| ### Alerts Alerts exist as objects keyed under `alerts`. Their key should be the name of the Alert. This is used in your monitor setup in `alert_down` and `alert_up`. Eachy alert allows the following configuration: |key|value| |---|---| |`command`|Specifies the command that should be executed, either in exec or shell form. This is the command that will be run when the alert is executed. This can be templated with environment variables or the variables shown in the table below| Also, when alerts are executed, they will be passed through Go's format function with arguments for some attributes of the Monitor. The following monitor specific variables can be referenced using Go formatting syntax: |token|value| |---|---| |`{{.AlertCount}}`|Number of times this monitor has alerted| |`{{.FailureCount}}`|The total number of sequential failed checks for this monitor| |`{{.LastCheckOutput}}`|The last returned value from the check command to either stderr or stdout| |`{{.LastSuccess}}`|The datetime of the last successful check as a go Time struct| |`{{.MonitorName}}`|The name of the monitor that failed and triggered the alert| |`{{.IsUp}}`|Indicates if the monitor that is alerting is up or not. Can be used in a conditional message template| To provide flexible formatting, the following non-standard functions are available in templates: |func|description| |---|---| |`ANSIC