diff --git a/devenv/docker/blocks/phlare/docker-compose.yaml b/devenv/docker/blocks/phlare/docker-compose.yaml new file mode 100644 index 00000000000..5ae756cb3d1 --- /dev/null +++ b/devenv/docker/blocks/phlare/docker-compose.yaml @@ -0,0 +1,8 @@ + phlare: + image: grafana/phlare:latest + command: + - --config.file=/etc/phlare.yaml + ports: + - 4100:4100 + volumes: + - ./docker/blocks/phlare/phlare.yaml:/etc/phlare.yaml diff --git a/devenv/docker/blocks/phlare/phlare.yaml b/devenv/docker/blocks/phlare/phlare.yaml new file mode 100644 index 00000000000..f1ba7c4fc34 --- /dev/null +++ b/devenv/docker/blocks/phlare/phlare.yaml @@ -0,0 +1,5 @@ +scrape_configs: + - job_name: "default" + scrape_interval: "15s" + static_configs: + - targets: ["127.0.0.1:4100"]