mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 08:28:52 +00:00
- Set up a simple example of Prometheus monitoring in the development docker-compose.yml. - Add documentation for configuring Prometheus.
8 lines
194 B
YAML
8 lines
194 B
YAML
scrape_configs:
|
|
- job_name: fleet
|
|
scheme: https
|
|
scrape_interval: 5s
|
|
static_configs:
|
|
- targets: ['host.docker.internal:8080']
|
|
tls_config:
|
|
insecure_skip_verify: true
|