Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f4fb75610a | ||
|
|
0ae7c6dbdf | ||
|
|
a06ed3540c | ||
|
|
bcbac39cad | ||
|
|
c18e9c8771 | ||
|
|
eb2987d3bc | ||
|
|
945c1b1ce0 | ||
|
|
b0ea3dc6d4 |
Vendored
+1
@@ -14,6 +14,7 @@
|
||||
|
||||
# User configuration
|
||||
config.yml
|
||||
config.hcl
|
||||
|
||||
# Output binary
|
||||
minitor
|
||||
|
||||
@@ -69,8 +69,8 @@ docker-run: docker-build
|
||||
$(TARGETS): $(GOFILES)
|
||||
mkdir -p ./dist
|
||||
GOOS=$(word 2, $(subst -, ,$(@))) GOARCH=$(word 3, $(subst -, ,$(@))) CGO_ENABLED=0 \
|
||||
go build -ldflags '-X "main.version=${VERSION}"' -a -installsuffix nocgo \
|
||||
-o $@
|
||||
go build -ldflags '-X "main.version=${VERSION}"' -a -installsuffix nocgo \
|
||||
-o $@
|
||||
|
||||
.PHONY: $(TARGET_ALIAS)
|
||||
$(TARGET_ALIAS):
|
||||
|
||||
@@ -17,7 +17,7 @@ I'm running a few small services and found Sensu, Consul, Nagios, etc. to all be
|
||||
Install and execute with:
|
||||
|
||||
```bash
|
||||
go install github.com/iamthefij/minitor-go@latest
|
||||
go install github.com/iamthefij/minitor-go/v2@latest
|
||||
minitor
|
||||
```
|
||||
|
||||
@@ -50,15 +50,17 @@ You can configure the timezone for the container by passing a `TZ` env variable.
|
||||
|
||||
## Configuring
|
||||
|
||||
In this repo, you can explore the `sample-config.hcl` file for an example, but the general structure is as follows. It should be noted that environment variable interpolation happens on load of the HCL file.
|
||||
In this repo, you can explore the `sample-config.hcl` file for an example, but the general structure is as follows. If you are passing environment variables to your commands or alerts, you should be aware that `${VAR}` syntax is reserved for HCL variable interpolation. To avoid issues, you can use `$${VAR}` syntax to escape the `$` character, simply use `$VAR`.
|
||||
|
||||
```hcl
|
||||
|
||||
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_every`|A default value used as an `alert_every` value for a monitor if not specified.|
|
||||
|`default_alert_after`|A default value used as an `alert_after` value for a monitor if not specified. Defaults 1, which will alert immediately.|
|
||||
|`default_alert_every`|A default value used as an `alert_every` value for a monitor if not specified. Defaults to -1, which will re-alert exponentially.|
|
||||
|`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.|
|
||||
|`monitor`|block listing monitors. Detailed description below|
|
||||
@@ -167,6 +169,48 @@ minitor -metrics
|
||||
minitor -metrics -metrics-port 3000
|
||||
```
|
||||
|
||||
## Migrating from v1 to v2
|
||||
|
||||
Minitor v2 introduces some breaking changes from v1. The most notable changes are:
|
||||
- The configuration file is now in HCL format instead of YAML.
|
||||
- The the Python formatting backwards compatability is removed.
|
||||
- The Command and ShellCommand fields are now mutually exclusive.
|
||||
- The check_interval is now strictly a duration string value. Eg. "30s" rather than `30`.
|
||||
- Default alert_every is now -1 (exponential backoff) rather than 0 (no re-alerting).
|
||||
|
||||
For the configuration, a confic that looked like this in v1:
|
||||
|
||||
```yaml
|
||||
check_interval: 60
|
||||
|
||||
monitors:
|
||||
- name: example
|
||||
command: "false"
|
||||
alert_down: ["log"]
|
||||
|
||||
alerts:
|
||||
log:
|
||||
command: ["echo", "Minitor up={{.IsUp}} for {{.MonitorName}}"]
|
||||
```
|
||||
|
||||
Would now look like this in v2:
|
||||
|
||||
```hcl
|
||||
check_interval = "1m"
|
||||
|
||||
monitor "example" {
|
||||
# example showing string to shell command migration
|
||||
shell_command = "false"
|
||||
alert_down = ["log"]
|
||||
check_interval = "1m"
|
||||
}
|
||||
|
||||
alert "log" {
|
||||
# example showing list to exec command migration
|
||||
command = ["echo", "Minitor up={{.IsUp}} for {{.MonitorName}}"]
|
||||
}
|
||||
```
|
||||
|
||||
## Contributing
|
||||
|
||||
Whether you're looking to submit a patch or tell me I broke something, you can contribute through the Github mirror and I can merge PRs back to the source repository.
|
||||
@@ -174,11 +218,3 @@ Whether you're looking to submit a patch or tell me I broke something, you can c
|
||||
Primary Repo: https://git.iamthefij.com/iamthefij/minitor.git
|
||||
|
||||
Github Mirror: https://github.com/IamTheFij/minitor.git
|
||||
|
||||
## Original Minitor
|
||||
|
||||
This is a reimplementation of [Minitor](https://git.iamthefij.com/iamthefij/minitor) in Go
|
||||
|
||||
Minitor is already a minimal monitoring tool. Python 3 was a quick way to get something live, but Python itself comes with a large footprint. Thus Go feels like a better fit for the project, longer term.
|
||||
|
||||
Initial target is meant to be roughly compatible requiring only minor changes to configuration. Future iterations may diverge to take advantage of Go specific features.
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ import (
|
||||
"errors"
|
||||
"testing"
|
||||
|
||||
m "git.iamthefij.com/iamthefij/minitor-go"
|
||||
m "git.iamthefij.com/iamthefij/minitor-go/v2"
|
||||
)
|
||||
|
||||
func TestAlertValidate(t *testing.T) {
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
m "git.iamthefij.com/iamthefij/minitor-go"
|
||||
m "git.iamthefij.com/iamthefij/minitor-go/v2"
|
||||
)
|
||||
|
||||
func TestLoadConfig(t *testing.T) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
module git.iamthefij.com/iamthefij/minitor-go
|
||||
module git.iamthefij.com/iamthefij/minitor-go/v2
|
||||
|
||||
go 1.23.0
|
||||
go 1.25.0
|
||||
|
||||
require (
|
||||
git.iamthefij.com/iamthefij/slog v1.3.0
|
||||
|
||||
@@ -119,7 +119,7 @@ func SendStartupAlerts(config *Config, alertNames []string) error {
|
||||
|
||||
func main() {
|
||||
showVersion := flag.Bool("version", false, "Display the version of minitor and exit")
|
||||
configPath := flag.String("config", "config.yml", "Alternate configuration path (default: config.yml)")
|
||||
configPath := flag.String("config", "config.hcl", "Alternate configuration path (default: config.hcl)")
|
||||
startupAlerts := flag.String("startup-alerts", "", "List of alerts to run on startup. This can help determine unhealthy alerts early on. (default \"\")")
|
||||
|
||||
flag.BoolVar(&slog.DebugLevel, "debug", false, "Enables debug logs (default: false)")
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ package main_test
|
||||
import (
|
||||
"testing"
|
||||
|
||||
m "git.iamthefij.com/iamthefij/minitor-go"
|
||||
m "git.iamthefij.com/iamthefij/minitor-go/v2"
|
||||
)
|
||||
|
||||
func Ptr[T any](v T) *T {
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
m "git.iamthefij.com/iamthefij/minitor-go"
|
||||
m "git.iamthefij.com/iamthefij/minitor-go/v2"
|
||||
)
|
||||
|
||||
func TestMonitorValidate(t *testing.T) {
|
||||
|
||||
+4
-4
@@ -38,15 +38,15 @@ alert "mailgun_down" {
|
||||
-F to=me@minitor.mon \
|
||||
-F text="Our monitor failed" \
|
||||
https://api.mailgun.net/v3/minitor.mon/messages \
|
||||
-u "api:${MAILGUN_API_KEY}"
|
||||
-u "api:$${MAILGUN_API_KEY}"
|
||||
EOF
|
||||
}
|
||||
|
||||
alert "sms_down" {
|
||||
shell_command = <<-EOF
|
||||
curl -s -X POST -F "Body=Failure! {{.MonitorName}} has failed" \
|
||||
-F "From=${AVAILABLE_NUMBER}" -F "To=${MY_PHONE}" \
|
||||
"https://api.twilio.com/2010-04-01/Accounts/${ACCOUNT_SID}/Messages" \
|
||||
-u "${ACCOUNT_SID}:${AUTH_TOKEN}"
|
||||
-F "From=$${AVAILABLE_NUMBER}" -F "To=$${MY_PHONE}" \
|
||||
"https://api.twilio.com/2010-04-01/Accounts/$${ACCOUNT_SID}/Messages" \
|
||||
-u "$${ACCOUNT_SID}:$${AUTH_TOKEN}"
|
||||
EOF
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user