d
Size: a a a
d
T
d
T
T
prometheus_flask_exporter
не нужен как я понимаюd
d
T
T
T
statsd-exporter
запускается отдельноd
d
d
d
d
global:
scrape_interval: 15s
evaluation_interval: 30s
# scrape_timeout is set to the global default (10s).
external_labels:
monitor: 'example-app'
rule_files:
scrape_configs:
- job_name: 'prometheus'
honor_labels: true
static_configs:
- targets: ['localhost:9090']
- job_name: 'example'
dns_sd_configs:
- names: ['backend']
port: 5000
type: A
refresh_interval: 5s
d
d
d
# honor_labels controls how Prometheus handles conflicts between labels that are
# already present in scraped data and labels that Prometheus would attach
# server-side ("job" and "instance" labels, manually configured target
# labels, and labels generated by service discovery implementations).
#
# If honor_labels is set to "true", label conflicts are resolved by keeping label
# values from the scraped data and ignoring the conflicting server-side labels.
#
# If honor_labels is set to "false", label conflicts are resolved by renaming
# conflicting labels in the scraped data to "exported_<original-label>" (for
# example "exported_instance", "exported_job") and then attaching server-side
# labels.
#
T