文档说明:只记录关键地方;
试验环境: linux debian 11
Prometheus
version: "3"
services:
prometheus:
image: prom/prometheus
ports:
- "9090:9090"
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
restart: always
# 容器内运行用户id 65534
prometheus 简单配置 (prometheus.yml文件)
global:
scrape_interval: 15s
evaluation_interval: 15s
rule_files:
# - "first.rules"
# - "second.rules"
scrape_configs:
- job_name: prometheus
static_configs:
- targets: ['localhost:9090']
参考文档
- prometheus Architecture
- prometheus getting_started
- github prometheus
- prometheus exporters
- What’s the difference between Graphite and Prometheus?