mirror of
https://github.com/ItsDrike/network-monitor.git
synced 2024-11-10 03:59:41 +00:00
add speedtest and blackbox probes
This commit is contained in:
parent
2ad53229e1
commit
627d9f648a
|
@ -45,12 +45,20 @@ services:
|
||||||
tty: true
|
tty: true
|
||||||
stdin_open: true
|
stdin_open: true
|
||||||
expose:
|
expose:
|
||||||
- 9171
|
- 9115
|
||||||
ports:
|
ports:
|
||||||
- 9171:9171
|
- 9115:9115
|
||||||
image: infinityworks/github-exporter:latest
|
image: prom/blackbox-exporter
|
||||||
environment:
|
networks:
|
||||||
- REPOS=freeCodeCamp/freeCodeCamp, docker/docker
|
- back-tier
|
||||||
- GITHUB_TOKEN=<GitHub API Token see README>
|
|
||||||
|
speedtest:
|
||||||
|
tty: true
|
||||||
|
stdin_open: true
|
||||||
|
expose:
|
||||||
|
- 9696
|
||||||
|
ports:
|
||||||
|
- 9696:9696
|
||||||
|
image: stefanwalther/speedtest-exporter
|
||||||
networks:
|
networks:
|
||||||
- back-tier
|
- back-tier
|
||||||
|
|
|
@ -28,10 +28,28 @@ scrape_configs:
|
||||||
- targets: ['localhost:9090']
|
- targets: ['localhost:9090']
|
||||||
|
|
||||||
|
|
||||||
- job_name: 'metrics'
|
- job_name: 'speedtest'
|
||||||
|
metrics_path: /metrics
|
||||||
# Override the global default and scrape targets from this job every 5 seconds.
|
scrape_interval: 5m
|
||||||
scrape_interval: 5s
|
scrape_timeout: 60s # running speedtest needs time to complete
|
||||||
|
|
||||||
static_configs:
|
static_configs:
|
||||||
- targets: ['metrics:9171']
|
- targets: ['speedtest:9696']
|
||||||
|
|
||||||
|
- job_name: 'blackbox'
|
||||||
|
metrics_path: /probe
|
||||||
|
scrape_interval: 5s
|
||||||
|
params:
|
||||||
|
module: [http_2xx] # Look for a HTTP 200 response.
|
||||||
|
static_configs:
|
||||||
|
- targets:
|
||||||
|
- http://google.com # Target to probe with http.
|
||||||
|
- https://blackdata.xam.dk:5001 # Target to probe with https.
|
||||||
|
- http://doesnotexistreally.com # Target to probe with http on port 8080.
|
||||||
|
relabel_configs:
|
||||||
|
- source_labels: [__address__]
|
||||||
|
target_label: __param_target
|
||||||
|
- source_labels: [__param_target]
|
||||||
|
target_label: instance
|
||||||
|
- target_label: __address__
|
||||||
|
replacement: metrics:9115 # The blackbox exporter's real hostname:port.
|
||||||
|
|
Loading…
Reference in a new issue