Skip to content

Commit

Permalink
feat(holesky): add update dashboard scripts + doc
Browse files Browse the repository at this point in the history
  • Loading branch information
mempirate committed Sep 12, 2024
1 parent 2ff9bf6 commit 8efc22f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
11 changes: 11 additions & 0 deletions testnets/holesky/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,17 @@ This will run all modules in Docker containers.
### Bolt Sidecar
WIP

### Observability
commit-boost comes with various observability tools, such as Prometheus, cadvisor, and Grafana. It also comes with some pre-built dashboards,
which can be found in the `grafana` directory.

To update these dashboards, run the following command:
```bash
./update-grafana.sh
```

In this directory, you can also find a Bolt dashboard, which will be launched alongside the other dashboards.

### Validators
Validators must be configured to always prefer builder proposals over their own. Refer to client documentation for the specific configuration flags.
**If this is not set, it could lead to commitment faults**.
Expand Down
7 changes: 7 additions & 0 deletions testnets/holesky/update-grafana.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

# Get the commit-hash from first argument
commit_hash=$1

curl https://raw.githubusercontent.com/Commit-Boost/commit-boost-client/main/grafana/dashboards/dashboard.json -o ./grafana/dashboards/dashboard.json
curl https://raw.githubusercontent.com/Commit-Boost/commit-boost-client/main/grafana/dashboards/system_metrics.json -o ./grafana/dashboards/system_metrics.json

0 comments on commit 8efc22f

Please sign in to comment.