diff --git a/CHANGELOG.md b/CHANGELOG.md index 0da685d..ba9bdfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.2 + +- Executable is no longer linked to glibc, so will run in any environment. + ## 1.0.1 - Adds the ability to set additional metadata, such as a team when invoking the command. E.g. `--metadata='{"team":"myteam"}'` @@ -5,4 +9,4 @@ ## 1.0.0 -- Initial release \ No newline at end of file +- Initial release diff --git a/Makefile b/Makefile index 8ee51cf..d87d0e4 100644 --- a/Makefile +++ b/Makefile @@ -29,4 +29,4 @@ release: clean # Clean up build artifacts clean: - rm -f $(BINARY) $(BINARY)-* \ No newline at end of file + rm -f $(BINARY) $(BINARY)-* diff --git a/README.md b/README.md index 918fb4d..206f47f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,12 @@ # Nagios incident.io Alert Source Plugin -This repo contains a Nagios plugin to send Nagios notifications to incident.io. +This repo contains a Nagios plugin to send Nagios notifications to incident.io. + +> [!NOTE] +> You'll need to [create a Nagios Alert Source][create-source] in your incident.io account to +> generate the `--api_url` and `--token` values required by the plugin. + +[create-source]: https://app.incident.io/~/alerts/sources/create ## Installation