Monitor
You can collect broker stats, ZooKeeper stats, and BookKeeper stats.
You can collect Pulsar broker metrics from brokers and export the metrics in JSON format. The Pulsar broker metrics mainly have two types:
Destination dumps, which contain stats for each individual topic. You can fetch the destination dumps using the command below:
Broker metrics, which contain the broker information and topics stats aggregated at namespace level. You can fetch the broker metrics by using the following command:
bin/pulsar-admin broker-stats monitoring-metrics
All the message rates are updated every minute.
The aggregated broker metrics are also exposed in the Prometheus format at:
http://$BROKER_ADDRESS:8080/metrics/
ZooKeeper stats
The local ZooKeeper, configuration store server and clients that are shipped with Pulsar can expose detailed stats through Prometheus.
You can configure the stats frameworks for BookKeeper by modifying the statsProviderClass
in the conf/bookkeeper.conf
file.
The default BookKeeper configuration enables the Prometheus exporter. The configuration is included with Pulsar distribution.
http://$BOOKIE_ADDRESS:8000/metrics
The default port for bookie is 8000
. You can change the port by configuring prometheusStatsHttpPort
in the conf/bookkeeper.conf
file.
Managed cursor acknowledgment state
The acknowledgment state is persistent to the ledger first. When the acknowledgment state fails to be persistent to the ledger, they are persistent to ZooKeeper. To track the stats of acknowledgement, you can configure the metrics for the managed cursor.
brk_ml_cursor_persistLedgerSucceed(namespace=", ledger_name="", cursor_name:")
brk_ml_cursor_persistLedgerErrors(namespace="", ledger_name="", cursor_name:"")
brk_ml_cursor_persistZookeeperSucceed(namespace="", ledger_name="", cursor_name:"")
brk_ml_cursor_persistZookeeperErrors(namespace="", ledger_name="", cursor_name:"")
Those metrics are added in the Prometheus interface, you can monitor and check the metrics stats in the Grafana.
You can collect functions worker stats from functions-worker
and export the metrics in JSON formats, which contain functions worker JVM metrics.
You can collect functions and connectors metrics from functions-worker
and export the metrics in JSON formats.
pulsar-admin functions-worker function-stats
http://$FUNCTIONS_WORKER_ADDRESS:$WORKER_PORT/metrics:
You can use Prometheus to collect all the metrics exposed for Pulsar components and set up dashboards to display the metrics and monitor your Pulsar cluster. For details, refer to Prometheus guide.
When you run Pulsar on bare metal, you can provide the list of nodes to be probed. When you deploy Pulsar in a Kubernetes cluster, the monitoring is setup automatically. For details, refer to .
When you collect time series statistics, the major problem is to make sure the number of dimensions attached to the data does not explode. Thus you only need to collect time series of metrics aggregated at the namespace level.
Pulsar per-topic dashboard
The per-topic dashboard instructions are available at .
You can use grafana to create dashboard driven by the data that is stored in Prometheus.
When you deploy Pulsar on Kubernetes with the Pulsar Helm Chart, a pulsar-grafana
Docker image is enabled by default. You can use the docker image with the principal dashboards.
The following are some Grafana dashboards examples:
- apache-pulsar-grafana-dashboard: a collection of Grafana dashboard templates for different Pulsar components running on both Kubernetes and on-premise machines.