From 0d6200742a6cfb54ed3e27469e13e1095125f28d Mon Sep 17 00:00:00 2001 From: wizzdom Date: Wed, 26 Feb 2025 04:21:12 +0000 Subject: [PATCH] monitoring: add prometheus --- jobs/monitoring/prometheus.hcl | 87 ++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 jobs/monitoring/prometheus.hcl diff --git a/jobs/monitoring/prometheus.hcl b/jobs/monitoring/prometheus.hcl new file mode 100644 index 0000000..764673a --- /dev/null +++ b/jobs/monitoring/prometheus.hcl @@ -0,0 +1,87 @@ +job "prometheus" { + datacenters = ["aperture"] + + group "prometheus" { + network { + port "http" { + static = 9090 + } + } + + service { + name = "prometheus" + port = "http" + } + + task "prometheus" { + driver = "docker" + config { + image = "quay.io/prometheus/prometheus" + 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" + ] + } + + template { + data = <