mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 01:47:55 +00:00
526c81b138
Ready-to-merge version of https://github.com/paritytech/polkadot-sdk/pull/2601 - Added optional CPU profiling - Updated instructions how to set up Prometheus, Pyroscope and Graphana - Added a flamegraph dashboard <img width="1470" alt="image" src="https://github.com/paritytech/polkadot-sdk/assets/27277055/c8f3b33d-3c01-4ec0-ac34-72d52325b6e6"> --------- Co-authored-by: ordian <write@reusable.software>
36 lines
682 B
YAML
36 lines
682 B
YAML
services:
|
|
grafana:
|
|
image: grafana/grafana-enterprise:latest
|
|
container_name: grafana
|
|
restart: always
|
|
networks:
|
|
- subsystem-bench
|
|
ports:
|
|
- "3000:3000"
|
|
|
|
prometheus:
|
|
image: prom/prometheus:latest
|
|
container_name: prometheus
|
|
restart: always
|
|
networks:
|
|
- subsystem-bench
|
|
volumes:
|
|
- ./prometheus:/etc/prometheus
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
ports:
|
|
- "9090:9090"
|
|
- "9999:9999"
|
|
|
|
pyroscope:
|
|
container_name: pyroscope
|
|
image: grafana/pyroscope:latest
|
|
restart: always
|
|
networks:
|
|
- subsystem-bench
|
|
ports:
|
|
- "4040:4040"
|
|
|
|
networks:
|
|
subsystem-bench:
|