Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions framework/.changeset/v0.10.29.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Enable Pyroscope UI in Grafana, update Pyroscope version
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,11 @@ datasources:
sslmode: disable
isDefault: false
editable: true

- name: Pyroscope
type: grafana-pyroscope-datasource
access: proxy
url: http://pyroscope:4040
isDefault: false
version: 1
editable: true
7 changes: 6 additions & 1 deletion framework/observability/compose/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ services:

grafana:
image: grafana/grafana:10.1.0
environment:
- GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=grafana-pyroscope-app
volumes:
- grafana_data:/var/lib/grafana
- grafana_home:/usr/share/grafana
Expand All @@ -84,11 +86,13 @@ services:
- loki

pyroscope:
image: 'grafana/pyroscope:1.13.4'
image: 'grafana/pyroscope:1.14.1'
ports:
- '4040:4040'
command:
- 'server'
volumes:
- pyroscope-storage:/var/lib/pyroscope

postgres_exporter_0:
image: prometheuscommunity/postgres-exporter:v0.17.1
Expand Down Expand Up @@ -142,6 +146,7 @@ volumes:
grafana_logs:
grafana_plugins:
tempo_data:
pyroscope-storage:

networks:
default:
Expand Down
Loading