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 = <