# Sui Node Monitoring

*[Documentation index](/llms.txt) · [Full index](/llms-full.txt)*

:::info

These instructions are for advanced users. If you just need a local development environment, you should instead follow the instructions in [Create a Local Sui Network](/getting-started/onboarding/local-network) to create a local full node, validators, and faucet.

:::

Nodes expose metrics on `localhost:9184/metrics` by default.

You can view the metrics in the metrics UI, or use a tool like `curl` to get the metrics in a format that is easy to parse.

```sh
$ curl -s http://localhost:9184/metrics | grep -E 'sui_validator|sui_fullnode'
```

## Production monitoring

For production monitoring, [Prometheus](https://prometheus.io/) and [Grafana](https://grafana.com/) are recommended.

You can use Grafana Agent, Grafana Alloy, or another tool to scrape the metrics from your node.
