From 814655cc5f01ee00ef25329ea48c7e7a9b395be8 Mon Sep 17 00:00:00 2001 From: Gavin Holahan Date: Fri, 28 Feb 2025 01:09:05 +0000 Subject: [PATCH] Removed Static, added better prom .yml --- jobs/monitoring/prometheus.hcl | 80 ++++++++++++++-------------------- 1 file changed, 32 insertions(+), 48 deletions(-) diff --git a/jobs/monitoring/prometheus.hcl b/jobs/monitoring/prometheus.hcl index 764673a..6ffa3af 100644 --- a/jobs/monitoring/prometheus.hcl +++ b/jobs/monitoring/prometheus.hcl @@ -1,87 +1,71 @@ job "prometheus" { datacenters = ["aperture"] + type = "service" group "prometheus" { + count = 1 + network { port "http" { - static = 9090 + to = 9090 } } - service { - name = "prometheus" - port = "http" - } - task "prometheus" { driver = "docker" + config { - image = "quay.io/prometheus/prometheus" + image = "prom/prometheus:latest" ports = ["http"] volumes = [ - "/storage/nomad/${NOMAD_JOB_NAME}/${NOMAD_TASK_NAME}:/prometheus" - ] - - 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" + "local/prometheus.yml:/etc/prometheus/prometheus.yml" ] } template { + destination = "local/prometheus.yml" data = <