AutoMQ¶
Collect AutoMQ related Metrics information.
Installation and Configuration¶
1. Enable AutoMQ Metrics¶
Adjust the AutoMQ startup command:
bin/kafka-server-start.sh ...\
--override s3.telemetry.metrics.exporter.type=prometheus \
--override s3.metrics.exporter.prom.port=8890 \
--override s3.metrics.exporter.prom.host=0.0.0.0 \
......
AutoMQ exposes the metrics port as 8890
, and you can view the metrics information through a browser: http://clientIP:8890/metrics
.
2. DataKit Collector Configuration¶
2.1 Install DataKit¶
2.2 Configure the Collector¶
Since AutoMQ
can directly expose a metrics
URL, it can be collected directly using the prom
collector.
Navigate to the conf.d/prom
directory under the DataKit installation directory, and copy prom.conf.sample
to automq.conf
.
cp prom.conf.sample automq.conf
Modify the content of automq.conf
as follows:
urls = ["http://clientIP:8890/metrics"]
source = "AutoMQ"
## Keep Exist Metric Name
## If the keep_exist_metric_name is true, keep the raw value for field names.
keep_exist_metric_name = true
[inputs.prom.tags_rename]
overwrite_exist_tags = true
[inputs.prom.tags_rename.mapping]
service_name = "job"
service_instance_id = "instance"
[inputs.prom.tags]
component="AutoMQ"
interval = "10s"
Other configurations should be adjusted as needed
, parameter adjustment instructions:
- urls: The AutoMQ Metrics address, fill in the exposed Metrics URL corresponding to the component.
- source: Alias for the collector, recommended for differentiation.
- interval: Collection interval.
3. Restart DataKit¶
Metrics¶
Kafka Metrics Set¶
Metric | Description | Unit |
---|---|---|
kafka_server_connection_count | Number of connections currently established by the node | Gauge |
kafka_network_threads_idle_rate | Idle rate of Kafka SocketServer network threads, range: [0, 1.0]. | Gauge |
kafka_controller_active_count | Indicates whether the current Controller node is the active Controller, a metric value of 1 means active, 0 means non-active. | Gauge |
kafka_broker_active_count | Number of active Brokers in the current cluster. | Gauge |
kafka_broker_fenced_count | Number of fenced Brokers in the current cluster. | Gauge |
kafka_topic_count | Total number of Topics in the current cluster. | Gauge |
kafka_partition_total_count | Total number of partitions in the current cluster. | Gauge |
kafka_partition_offline_count | Total number of offline partitions in the current cluster. | Gauge |
kafka_stream_s3_object_count | Total number of Objects uploaded to object storage in the current cluster, classified by Object status. | Gauge |
kafka_stream_s3_object_size_bytes | Total size of Objects uploaded to object storage in the current cluster. | Byte |
kafka_stream_stream_object_num | Number of StreamObjects uploaded to object storage in the current cluster. | Gauge |
kafka_stream_stream_set_object_num | Number of StreamSetObjects uploaded to object storage by each Broker in the current cluster. | Gauge |
kafka_message_count_total | Total number of messages received by the Broker node, deriving over time gives message throughput. | Counter |
kafka_network_io_bytes_total | Total size of messages received and sent by the Broker node, deriving over time gives message size throughput. | Counter |
kafka_request_size_bytes_total | Total size of requests received by the Broker node. | Byte |
kafka_topic_request_count_total | Total number of requests received by each Topic on the Broker node, includes only produce and fetch request types. | Counter |
kafka_topic_request_failed_total | Total number of failed requests for each Topic on the Broker node, includes only produce and fetch request types. | Counter |
kafka_request_count_total | Total number of requests received by the Broker node. | Counter |
kafka_request_time_milliseconds_total | Total time spent processing requests by the Broker node. | ms |
kafka_request_queue_size | Size of the request queue on the Broker node. | Byte |
kafka_response_queue_size | Size of the response queue on the Broker node. | Byte |
kafka_partition_count | Number of partitions currently allocated to the Broker node. | Counter |
kafka_log_size | Size of messages for each partition on the Broker node. | Byte |
For more details about the metrics, refer to the AutoMQ Official Documentation.