From 6683ba6283109bbf1cfe393dd68c4e1bd9818b17 Mon Sep 17 00:00:00 2001 From: Wojtek Bednarzak Date: Wed, 22 Mar 2023 23:13:39 +0000 Subject: [PATCH] jobs/monitoring: Add Prometheus The change adds the Prometheus job. I had to go with certain assumptions regarding the host constraint, as well as lack of volumes, but I hope this serves as the base for running the monitoring stack on Nomad itself. The Prometheus instance is on purpose left unexposed, so that we can use Grafana and additional authentication in that layer later. --- jobs/monitoring/README.md | 5 ++ jobs/monitoring/prometheus.hcl | 83 ++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+) create mode 100644 jobs/monitoring/README.md create mode 100644 jobs/monitoring/prometheus.hcl diff --git a/jobs/monitoring/README.md b/jobs/monitoring/README.md new file mode 100644 index 0000000..a280b0f --- /dev/null +++ b/jobs/monitoring/README.md @@ -0,0 +1,5 @@ +# Monitoring Nomad Jobs + +The following directory contains the jobs for monitoring. + +`monitoring` namespace must be created prior to deploying the jobs. diff --git a/jobs/monitoring/prometheus.hcl b/jobs/monitoring/prometheus.hcl new file mode 100644 index 0000000..c2e8dfc --- /dev/null +++ b/jobs/monitoring/prometheus.hcl @@ -0,0 +1,83 @@ +job "prometheus" { + datacenters = ["aperature"] + namespace = "monitoring" + + group "prometheus" { + network { + port "http" { + to = 9090 + } + } + + constraint { + attribute = "${attr.unique.hostname}" + value = "wheatley" + } + + service { + name = "prometheus" + port = "http" + } + + task "prometheus" { + driver = "docker" + config { + image = "quay.io/prometheus/prometheus:v2.43.0" + args = [ + "--config.file=$${NOMAD_TASK_DIR}/prometheus.yml", + "--log.level=info", + "--storage.tsdb.retention.time=90d", + "--storage.tsdb.path=/prometheus", + "--web.console.libraries=/usr/share/prometheus/console_libraries", + "--web.console.templates=/usr/share/prometheus/consoles" + ] + } + + # TODO: Add volumes for persistent storage, configured to be + # /prometheus on the container. + + template { + destination = "local/prometheus.yml" + data = <