Skip to main content
Version: 0.13.0

Monitor Pulsar connectors

This document describes how to monitor Pulsar connectors (sources and sinks) with Prometheus and pulsar-admin commands.

Monitoring with Prometheus

Prometheus is a monitoring and alerting system. It handles the multi-dimensional data. When you deploy Function Mesh in a Kubernetes cluster, the monitoring is setup automatically.

All the Pulsar connector metrics are labelled with the following labels:

  • cluster: cluster=${pulsar_cluster}. ${pulsar_cluster} is the cluster name that you have configured in the broker.conf file.
  • namespace: namespace=${pulsar_namespace}. ${pulsar_namespace} is the namespace name.

Pulsar connector metrics contain source metrics and sink metrics.

Source metrics

NameTypeDescription
pulsar_source_written_totalCounterThe total number of records written to a Pulsar topic.
pulsar_source_written_total_1minCounterThe total number of records written to a Pulsar topic in the last 1 minute.
pulsar_source_received_totalCounterThe total number of records received from source.
pulsar_source_received_total_1minCounterThe total number of records received from source in the last 1 minute.
pulsar_source_last_invocationGaugeThe timestamp of the last invocation of the source.
pulsar_source_source_exceptionGaugeThe exception from a source.
pulsar_source_source_exceptions_totalCounterThe total number of source exceptions.
pulsar_source_source_exceptions_total_1minCounterThe total number of source exceptions in the last 1 minute.
pulsar_source_system_exceptionGaugeThe exception from system code.
pulsar_source_system_exceptions_totalCounterThe total number of system exceptions.
pulsar_source_system_exceptions_total_1minCounterThe total number of system exceptions in the last 1 minute.
pulsarsource_user_metricSummaryThe user-defined metrics.

Sink metrics

NameTypeDescription
pulsar_sink_written_totalCounterThe total number of records processed by a sink.
pulsar_sink_written_total_1minCounterThe total number of records processed by a sink in the last 1 minute.
pulsar_sink_received_total_1minCounterThe total number of messages that a sink has received from Pulsar topics in the last 1 minute.
pulsar_sink_received_totalCounterThe total number of records that a sink has received from Pulsar topics.
pulsar_sink_last_invocationGaugeThe timestamp of the last invocation of the sink.
pulsar_sink_sink_exceptionGaugeThe exception from a sink.
pulsar_sink_sink_exceptions_totalCounterThe total number of sink exceptions.
pulsar_sink_sink_exceptions_total_1minCounterThe total number of sink exceptions in the last 1 minute.
pulsar_sink_system_exceptionGaugeThe exception from system code.
pulsar_sink_system_exceptions_totalCounterThe total number of system exceptions.
pulsar_sink_system_exceptions_total_1minCounterThe total number of system exceptions in the last 1 minute.
pulsarsink_user_metricSummaryThe user-defined metrics.

Monitoring with pulsar-admin CLI tool

Note

To use the pulsar-admin CLI tool to monitor Pulsar functions and connectors, you should start Function Mesh Worker service in advance. For details, see work with pulsar-admin CLI tool.

To monitor a Pulsar connector, you can perform the following operations.

For more information, see Pulsar source CLIs and Pulsar sink CLIs.

get

You can get the information of a Pulsar connector.

  • The pulsar-admin sources get command is used to get the information of a Pulsar source connector.

    pulsar-admin sources get options
  • The pulsar-admin sinks get command is used to get the information of a Pulsar sink connector.

    pulsar-admin sinks get options

list

You can get a list of running Pulsar connectors.

  • The pulsar-admin sources list command is used to list all running Pulsar source connectors.

    pulsar-admin sources list options
  • The pulsar-admin sinks list command is used to list all running Pulsar sink connectors.

    pulsar-admin sinks list options

status

You can get the current status of a Pulsar connector.

  • The pulsar-admin sources status command is used to check the current status of a Pulsar source connector.

    pulsar-admin sources status options
  • The pulsar-admin sinks status command is used to check the current status of a Pulsar sink connector.

    pulsar-admin sinks status options