Removed Static, added better prom .yml
This commit is contained in:
parent
0d6200742a
commit
814655cc5f
1 changed files with 32 additions and 48 deletions
|
@ -1,87 +1,71 @@
|
||||||
job "prometheus" {
|
job "prometheus" {
|
||||||
datacenters = ["aperture"]
|
datacenters = ["aperture"]
|
||||||
|
type = "service"
|
||||||
|
|
||||||
group "prometheus" {
|
group "prometheus" {
|
||||||
|
count = 1
|
||||||
|
|
||||||
network {
|
network {
|
||||||
port "http" {
|
port "http" {
|
||||||
static = 9090
|
to = 9090
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
service {
|
|
||||||
name = "prometheus"
|
|
||||||
port = "http"
|
|
||||||
}
|
|
||||||
|
|
||||||
task "prometheus" {
|
task "prometheus" {
|
||||||
driver = "docker"
|
driver = "docker"
|
||||||
|
|
||||||
config {
|
config {
|
||||||
image = "quay.io/prometheus/prometheus"
|
image = "prom/prometheus:latest"
|
||||||
ports = ["http"]
|
ports = ["http"]
|
||||||
|
|
||||||
volumes = [
|
volumes = [
|
||||||
"/storage/nomad/${NOMAD_JOB_NAME}/${NOMAD_TASK_NAME}:/prometheus"
|
"local/prometheus.yml:/etc/prometheus/prometheus.yml"
|
||||||
]
|
|
||||||
|
|
||||||
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 {
|
template {
|
||||||
|
destination = "local/prometheus.yml"
|
||||||
data = <<EOF
|
data = <<EOF
|
||||||
global:
|
global:
|
||||||
scrape_interval: 10s
|
scrape_interval: 10s
|
||||||
evaluation_interval: 10s
|
evaluation_interval: 10s
|
||||||
|
|
||||||
scrape_configs:
|
scrape_configs:
|
||||||
|
|
||||||
- job_name: 'nomad_metrics'
|
- job_name: 'nomad_metrics'
|
||||||
consul_sd_configs:
|
consul_sd_configs:
|
||||||
- server: '{{ env "attr.unique.network.ip-address" }}:8500'
|
- server: 'consul.service.consul:8500'
|
||||||
services: ['nomad-client', 'nomad']
|
services: ['nomad-client', 'nomad'] # This allows for Client (Workload) and Server (Orchastration) metrics
|
||||||
|
tags: ['http']
|
||||||
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
|
metrics_path: /v1/metrics
|
||||||
params:
|
params:
|
||||||
format: ['prometheus']
|
format: ['prometheus']
|
||||||
|
|
||||||
- job_name: 'application_metrics'
|
- job_name: 'container-metrics'
|
||||||
consul_sd_configs:
|
consul_sd_configs:
|
||||||
- server: '{{ env "attr.unique.network.ip-address" }}:8500'
|
- server: 'consul.service.consul:8500'
|
||||||
|
tags: ['prometheus.enable=true']
|
||||||
relabel_configs:
|
relabel_configs:
|
||||||
- source_labels: ['__meta_consul_service']
|
- source_labels: ['__meta_consul_service']
|
||||||
regex: 'nomad|nomad-client|consul'
|
target_label: 'job'
|
||||||
action: drop
|
replacement: 'consul-service'
|
||||||
# Drop services which do not want to be scraped.
|
- source_labels: ['__meta_consul_tags']
|
||||||
# Typically used when a job does not expose prometheus metrics.
|
regex: '.*prometheus.path=([^,]+).*' # Extract path from tag
|
||||||
- source_labels: ['__meta_consul_tags']
|
target_label: '__metrics_path__'
|
||||||
regex: '.*prometheus.io/scrape=false.*'
|
|
||||||
action: 'drop'
|
|
||||||
- source_labels: ['__meta_consul_node']
|
|
||||||
target_label: 'node'
|
|
||||||
- source_labels: ['__meta_consul_service']
|
|
||||||
target_label: 'service'
|
|
||||||
EOF
|
|
||||||
|
|
||||||
destination = "local/prometheus.yml"
|
metrics_path: /v1/metrics
|
||||||
|
params:
|
||||||
|
format: ['prometheus']
|
||||||
|
|
||||||
|
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
resources {
|
||||||
|
cpu = 500
|
||||||
|
memory = 512
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue