Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix Grafana dashboards and set temporal metrics port statically #945

Merged
merged 1 commit into from
Dec 11, 2024
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
2 changes: 2 additions & 0 deletions monitoring/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ services:
volumes:
- grafana_data:/var/lib/grafana
- ./grafana/provisioning:/etc/grafana/provisioning
- ./grafana/provisioning/dashboards:/var/lib/grafana/dashboards
- ./grafana/dashboard.yaml:/etc/grafana/provisioning/dashboards/main.yaml
profiles:
- multi-tenant

Expand Down
12 changes: 12 additions & 0 deletions monitoring/grafana/dashboard.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
apiVersion: 1

providers:
- name: "Dashboard provider"
orgId: 1
type: file
disableDeletion: false
updateIntervalSeconds: 10
allowUiUpdates: false
options:
path: /var/lib/grafana/dashboards
foldersFromFilesStructure: true
2 changes: 1 addition & 1 deletion scheduler/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ x--temporal-base: &temporal-base
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/temporal-postgres.yaml
- DB=postgres12
- LOG_LEVEL=${TEMPORAL_LOG_LEVEL:-info}
- PROMETHEUS_ENDPOINT=${TEMPORAL_PROMETHEUS_ENDPOINT:-0.0.0.0:15000}
- PROMETHEUS_ENDPOINT=0.0.0.0:15000
whiterabbit1983 marked this conversation as resolved.
Show resolved Hide resolved
volumes:
- ./dynamicconfig:/etc/temporal/config/dynamicconfig
- ./cert:/cert
Expand Down
Loading