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