quickupdate
This commit is contained in:
0
docker-compose/prometheus-grafana/README.md
Normal file → Executable file
0
docker-compose/prometheus-grafana/README.md
Normal file → Executable file
54
docker-compose/prometheus-grafana/config/prometheus.yml
Normal file → Executable file
54
docker-compose/prometheus-grafana/config/prometheus.yml
Normal file → Executable file
@@ -1,27 +1,27 @@
|
|||||||
global:
|
global:
|
||||||
scrape_interval: 15s # By default, scrape targets every 15 seconds.
|
scrape_interval: 15s # By default, scrape targets every 15 seconds.
|
||||||
|
|
||||||
# Attach these labels to any time series or alerts when communicating with
|
# Attach these labels to any time series or alerts when communicating with
|
||||||
# external systems (federation, remote storage, Alertmanager).
|
# external systems (federation, remote storage, Alertmanager).
|
||||||
# external_labels:
|
# external_labels:
|
||||||
# monitor: 'codelab-monitor'
|
# monitor: 'codelab-monitor'
|
||||||
|
|
||||||
# A scrape configuration containing exactly one endpoint to scrape:
|
# A scrape configuration containing exactly one endpoint to scrape:
|
||||||
# Here it's Prometheus itself.
|
# Here it's Prometheus itself.
|
||||||
scrape_configs:
|
scrape_configs:
|
||||||
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
|
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
|
||||||
- job_name: 'prometheus'
|
- job_name: 'prometheus'
|
||||||
# Override the global default and scrape targets from this job every 5 seconds.
|
# Override the global default and scrape targets from this job every 5 seconds.
|
||||||
scrape_interval: 5s
|
scrape_interval: 5s
|
||||||
static_configs:
|
static_configs:
|
||||||
- targets: ['localhost:9090']
|
- targets: ['localhost:9090']
|
||||||
|
|
||||||
# Example job for node_exporter
|
# Example job for node_exporter
|
||||||
# - job_name: 'node_exporter'
|
# - job_name: 'node_exporter'
|
||||||
# static_configs:
|
# static_configs:
|
||||||
# - targets: ['node_exporter:9100']
|
# - targets: ['node_exporter:9100']
|
||||||
|
|
||||||
# Example job for cadvisor
|
# Example job for cadvisor
|
||||||
# - job_name: 'cadvisor'
|
# - job_name: 'cadvisor'
|
||||||
# static_configs:
|
# static_configs:
|
||||||
# - targets: ['cadvisor:8080']
|
# - targets: ['cadvisor:8080']
|
||||||
|
|||||||
58
docker-compose/prometheus-grafana/docker-compose.yml
Normal file → Executable file
58
docker-compose/prometheus-grafana/docker-compose.yml
Normal file → Executable file
@@ -1,30 +1,30 @@
|
|||||||
---
|
---
|
||||||
version: '3'
|
version: '3'
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
prometheus-data:
|
prometheus-data:
|
||||||
driver: local
|
driver: local
|
||||||
grafana-data:
|
grafana-data:
|
||||||
driver: local
|
driver: local
|
||||||
|
|
||||||
services:
|
services:
|
||||||
prometheus:
|
prometheus:
|
||||||
image: prom/prometheus:latest
|
image: prom/prometheus:latest
|
||||||
container_name: prometheus
|
container_name: prometheus
|
||||||
ports:
|
ports:
|
||||||
- "9090:9090"
|
- "9090:9090"
|
||||||
volumes:
|
volumes:
|
||||||
- /etc/prometheus:/config
|
- /etc/prometheus:/config
|
||||||
- prometheus-data:/prometheus
|
- prometheus-data:/prometheus
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
command:
|
command:
|
||||||
- "--config.file=/config/prometheus.yml"
|
- "--config.file=/config/prometheus.yml"
|
||||||
|
|
||||||
grafana:
|
grafana:
|
||||||
image: grafana/grafana:latest
|
image: grafana/grafana:latest
|
||||||
container_name: grafana
|
container_name: grafana
|
||||||
ports:
|
ports:
|
||||||
- "3000:3000"
|
- "3000:3000"
|
||||||
volumes:
|
volumes:
|
||||||
- grafana-data:/var/lib/grafana
|
- grafana-data:/var/lib/grafana
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
32
docker-compose/prometheus-grafana/exporters/cadvisor/docker-compose.yml
Normal file → Executable file
32
docker-compose/prometheus-grafana/exporters/cadvisor/docker-compose.yml
Normal file → Executable file
@@ -1,17 +1,17 @@
|
|||||||
---
|
---
|
||||||
version: '3'
|
version: '3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
cadvisor:
|
cadvisor:
|
||||||
image: google/cadvisor:latest
|
image: google/cadvisor:latest
|
||||||
container_name: cadvisor
|
container_name: cadvisor
|
||||||
# ports:
|
# ports:
|
||||||
# - "8080:8080"
|
# - "8080:8080"
|
||||||
volumes:
|
volumes:
|
||||||
- /:/rootfs:ro
|
- /:/rootfs:ro
|
||||||
- /var/run:/var/run:ro
|
- /var/run:/var/run:ro
|
||||||
- /sys:/sys:ro
|
- /sys:/sys:ro
|
||||||
- /var/lib/docker/:/var/lib/docker:ro
|
- /var/lib/docker/:/var/lib/docker:ro
|
||||||
- /dev/disk/:/dev/disk:ro
|
- /dev/disk/:/dev/disk:ro
|
||||||
devices:
|
devices:
|
||||||
- /dev/kmsg
|
- /dev/kmsg
|
||||||
24
docker-compose/prometheus-grafana/exporters/node_exporter/docker-compose.yml
Normal file → Executable file
24
docker-compose/prometheus-grafana/exporters/node_exporter/docker-compose.yml
Normal file → Executable file
@@ -1,13 +1,13 @@
|
|||||||
---
|
---
|
||||||
version: '3.8'
|
version: '3.8'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
node_exporter:
|
node_exporter:
|
||||||
image: quay.io/prometheus/node-exporter:latest
|
image: quay.io/prometheus/node-exporter:latest
|
||||||
container_name: node_exporter
|
container_name: node_exporter
|
||||||
command:
|
command:
|
||||||
- '--path.rootfs=/host'
|
- '--path.rootfs=/host'
|
||||||
pid: host
|
pid: host
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- '/:/host:ro,rslave'
|
- '/:/host:ro,rslave'
|
||||||
0
vagrant/hyperv/ubuntu/docker/Vagrantfile
vendored
Normal file → Executable file
0
vagrant/hyperv/ubuntu/docker/Vagrantfile
vendored
Normal file → Executable file
0
vagrant/hyperv/ubuntu/microk8s-installed/Vagrantfile
vendored
Normal file → Executable file
0
vagrant/hyperv/ubuntu/microk8s-installed/Vagrantfile
vendored
Normal file → Executable file
0
vagrant/hyperv/ubuntu/plain-with-cockpit/Vagrantfile
vendored
Normal file → Executable file
0
vagrant/hyperv/ubuntu/plain-with-cockpit/Vagrantfile
vendored
Normal file → Executable file
0
vagrant/hyperv/ubuntu/plain-with-cockpit/playbook.yaml
Normal file → Executable file
0
vagrant/hyperv/ubuntu/plain-with-cockpit/playbook.yaml
Normal file → Executable file
0
vagrant/hyperv/ubuntu/plain/Vagrantfile
vendored
Normal file → Executable file
0
vagrant/hyperv/ubuntu/plain/Vagrantfile
vendored
Normal file → Executable file
Reference in New Issue
Block a user