From 362d87c49ba8890503c3967ff76bacd4914fb8fa Mon Sep 17 00:00:00 2001 From: Daniel Speicher <daniel.speicher@lakedrops.com> Date: Fri, 7 Jun 2024 15:49:46 +0200 Subject: [PATCH] docker/l3d#85 --- docs/docker/alerta-proxy/index.md | 22 ++++++++++++++++++++++ mkdocs.yml | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 docs/docker/alerta-proxy/index.md diff --git a/docs/docker/alerta-proxy/index.md b/docs/docker/alerta-proxy/index.md new file mode 100644 index 0000000..448bafb --- /dev/null +++ b/docs/docker/alerta-proxy/index.md @@ -0,0 +1,22 @@ +--- +title: Docker Alerta Proxy +repo: https://gitlab.lakedrops.com/docker/alerta-proxy +issues: https://gitlab.lakedrops.com/docker/alerta-proxy/-/issues +tags: +- docker +- alerta +--- +# Alerta Proxy + +This is a docker image, which creates a UDP Server Socket. This socket can receive alert messages from multiple +applications and sends those messages via API to the central Alerta host. You will need the following variables: + +```alerta +ENV ALERTA_DOMAIN "alerta.your-domain.com" +ENV ALERTA_API_KEY "required" +ENV ALERTA_ENVIRONMENT "Production" +ENV ALERTA_PROJECT_ID 0 +ENV HOST "0.0.0.0" +ENV PORT 20002 +ENV HOSTNAME "localhost" +``` diff --git a/mkdocs.yml b/mkdocs.yml index 5983dba..a370915 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -84,6 +84,8 @@ nav: - Team Handbook: lakedrops.md - Docker: - docker/index.md + - Alerta Proxy: + - docker/alerta-proxy-index.md - Ansible: - docker/ansible/index.md - GitLab Drupal CI: -- GitLab