Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jobs/monitoring: Add Prometheus #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions jobs/monitoring/README.md
Original file line number Diff line number Diff line change
@@ -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.
83 changes: 83 additions & 0 deletions jobs/monitoring/prometheus.hcl
Original file line number Diff line number Diff line change
@@ -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 = <<EOF
global:
scrape_interval: 10s
evaluation_interval: 10s
scrape_configs:
- job_name: 'nomad_metrics'
consul_sd_configs:
- server: '{{ env "attr.unique.network.ip-address" }}:8500'
services: ['nomad-client', 'nomad']
relabel_configs:
- source_labels: ['__meta_consul_tags']
regex: '(.*)http(.*)'
action: keep
- source_labels: ['__meta_consul_node']
target_label: 'node'
# If nomad is available on multiple IPs, drop the ones which are not scrapable
- source_labels: ['__address__']
regex: '172(.*)'
action: drop
metrics_path: /v1/metrics
params:
format: ['prometheus']
- job_name: 'application_metrics'
consul_sd_configs:
- server: '{{ env "attr.unique.network.ip-address" }}:8500'
relabel_configs:
- source_labels: ['__meta_consul_service']
regex: 'nomad|nomad-client|consul'
action: drop
# Drop services which do not want to be scraped.
# Typically used when a job does not expose prometheus metrics.
- source_labels: ['__meta_consul_tags']
regex: '(.*)prometheus.io/scrape=false(.*)'
action: 'drop'
- source_labels: ['__meta_consul_node']
target_label: 'node'
- source_labels: ['__meta_consul_service']
target_label: 'service'
EOF
}
}
}
}