diff --git a/book/SUMMARY.md b/book/SUMMARY.md index 8acb29ac6..cabe3f097 100644 --- a/book/SUMMARY.md +++ b/book/SUMMARY.md @@ -20,12 +20,10 @@ 1. [admin](./jsonrpc/admin.md) 1. [rpc](./jsonrpc/rpc.md) 1. [CLI Reference](./cli/cli.md) - 1. [reth node](./cli/node.md) --> + 1. [reth node](./cli/node.md) 1. [reth db](./cli/db.md) 1. [reth p2p](./cli/p2p.md) 1. [reth stage](./cli/stage.md) - 1. [reth dump-stage](./cli/dump-stage.md) - 1. [reth drop-stage](./cli/drop-stage.md) 1. [Developers](./developers/developers.md) 1. [Contribute](./developers/contribute.md) 1. [Architecture](./developers/architecture.md) \ No newline at end of file diff --git a/book/run/observability.md b/book/run/observability.md index 0746085d2..0b24f139a 100644 --- a/book/run/observability.md +++ b/book/run/observability.md @@ -22,7 +22,7 @@ while true; do date; curl -s localhost:9000 | grep -Ev '^(#|$)' | sort; echo; sl We're finally getting somewhere! As a final step, though, wouldn't it be great to see how these metrics progress over time (and generally, in a GUI)? -### Prometheus & Grafana +## Prometheus & Grafana We're going to be using Prometheus to collect metrics off of the endpoint we set up, and use Grafana to scrape the metrics from Prometheus and define a dashboard with them. @@ -55,7 +55,7 @@ To configure the dashboard in Grafana, click on the squares icon in the upper le And voilá, you should see your dashboard! If you're not yet connected to any peers, the dashboard will look like it's in an empty state, but once you are, you should see it start populating with data. -### Conclusion +## Conclusion In this runbook, we took you through starting the node, exposing different log levels, exporting metrics, and finally viewing those metrics in a Grafana dashboard.