Added prometheus with scrape options

This commit is contained in:
2024-11-16 22:26:23 +01:00
parent f839fa454e
commit 101a598f6f
9 changed files with 58 additions and 3 deletions

0
monitoring/compose.yml Normal file
View File

View File

0
monitoring/prometheus/.gitignore vendored Normal file
View File

View File

@@ -0,0 +1,7 @@
services:
prometheus:
image: prom/prometheus
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
ports:
- 9090:9090

View File

@@ -0,0 +1,19 @@
global:
scrape_interval: 10s
scrape_configs:
# This instance scraper
- job_name: 'prometheus'
static_configs:
- targets:
- prometheus:9090
# Server Scrapers
- job_name: 'mc-server'
static_configs:
- targets: ['localhost:9100']
labels:
instance: 'Fallback'
- targets: ['100.80.35.55:9100']
labels:
instance: 'Main'