90 lines
2.8 KiB
YAML
90 lines
2.8 KiB
YAML
|
|
# Prometheus blackbox scrape config — synthetic monitoring of the
|
||
|
|
# 6 parcours from v1.0.9 W5 Day 24.
|
||
|
|
#
|
||
|
|
# Probed every 5 minutes ; alerts fire after 2 consecutive failures.
|
||
|
|
# This file is sourced by the main prometheus.yml :
|
||
|
|
#
|
||
|
|
# scrape_configs:
|
||
|
|
# - job_name: 'blackbox'
|
||
|
|
# file_sd_configs:
|
||
|
|
# - files:
|
||
|
|
# - /etc/prometheus/blackbox_targets.yml
|
||
|
|
# metrics_path: /probe
|
||
|
|
# relabel_configs:
|
||
|
|
# - source_labels: [__address__]
|
||
|
|
# target_label: __param_target
|
||
|
|
# - source_labels: [__param_target]
|
||
|
|
# target_label: instance
|
||
|
|
# - target_label: __address__
|
||
|
|
# replacement: blackbox-exporter.lxd:9115
|
||
|
|
#
|
||
|
|
# Each entry below carries a `module` label that maps to a
|
||
|
|
# blackbox.yml module name AND a `parcours` label so Grafana can
|
||
|
|
# group / filter. Prometheus passes module + target through the
|
||
|
|
# query string when it scrapes blackbox.
|
||
|
|
|
||
|
|
# Parcours 1 — register / verify / login
|
||
|
|
# (Reachability of the auth surface ; multi-step register-then-verify
|
||
|
|
# requires a synthetic-client binary, tracked as follow-up.)
|
||
|
|
- targets:
|
||
|
|
- https://staging.veza.fr/api/v1/auth/login
|
||
|
|
labels:
|
||
|
|
module: http_status_envelope
|
||
|
|
parcours: auth_login
|
||
|
|
probe_kind: synthetic
|
||
|
|
|
||
|
|
# Parcours 2 — login → search → play first
|
||
|
|
- targets:
|
||
|
|
- https://staging.veza.fr/api/v1/search?q=test
|
||
|
|
labels:
|
||
|
|
module: http_search
|
||
|
|
parcours: search
|
||
|
|
probe_kind: synthetic
|
||
|
|
|
||
|
|
# Parcours 3 — login → upload tiny audio → poll status
|
||
|
|
# Approximated by reaching the upload-config endpoint ; the actual
|
||
|
|
# upload requires auth + file body which blackbox can't model.
|
||
|
|
- targets:
|
||
|
|
- https://staging.veza.fr/api/v1/upload/config
|
||
|
|
labels:
|
||
|
|
module: http_2xx
|
||
|
|
parcours: upload_init
|
||
|
|
probe_kind: synthetic
|
||
|
|
|
||
|
|
# Parcours 4 — login → browse marketplace → add to cart
|
||
|
|
# Approximated by reaching the marketplace listing endpoint.
|
||
|
|
- targets:
|
||
|
|
- https://staging.veza.fr/api/v1/marketplace/products?limit=5
|
||
|
|
labels:
|
||
|
|
module: http_marketplace
|
||
|
|
parcours: marketplace_list
|
||
|
|
probe_kind: synthetic
|
||
|
|
|
||
|
|
# Parcours 5 — WebSocket chat connect + send message
|
||
|
|
# TCP-only probe : confirms the listener is up. The full handshake +
|
||
|
|
# auth + send round-trip needs the synthetic-client binary.
|
||
|
|
- targets:
|
||
|
|
- staging.veza.fr:443
|
||
|
|
labels:
|
||
|
|
module: tcp_websocket
|
||
|
|
parcours: chat_websocket
|
||
|
|
probe_kind: synthetic
|
||
|
|
|
||
|
|
# Parcours 6 — live stream metadata fetch
|
||
|
|
- targets:
|
||
|
|
- https://staging.veza.fr/api/v1/streams/active
|
||
|
|
labels:
|
||
|
|
module: http_2xx
|
||
|
|
parcours: live_streams
|
||
|
|
probe_kind: synthetic
|
||
|
|
|
||
|
|
# Bonus — public status page health (covers the /api/v1/status
|
||
|
|
# response shape so a Cachet/statuspage.io consumer doesn't depend
|
||
|
|
# on a hand-pinged check).
|
||
|
|
- targets:
|
||
|
|
- https://staging.veza.fr/api/v1/status
|
||
|
|
labels:
|
||
|
|
module: http_status_envelope
|
||
|
|
parcours: status_endpoint
|
||
|
|
probe_kind: synthetic
|