Important
You are viewing documentation for an older version of Confluent Platform. For the latest, click here.
Confluent Metrics Reporter¶
The Confluent Metrics Reporter collects various metrics from a Kafka cluster. The Confluent Metrics Reporter is necessary for the Confluent Control Center system health monitoring and Confluent Auto Data Balancer to operate.
The metrics are produced to a topic in a Kafka cluster. You may choose whether to publish metrics to a Kafka cluster that is:
- the same as your production traffic cluster. Using the same cluster is more convenient and is a reasonable way to get started
- different from your production traffic cluster. Using a dedicated metrics cluster is more resilient because it continues to provide system health monitoring even if the production traffic cluster experiences issues
Installation¶
The Confluent Metrics Reporter is automatically installed onto Kafka brokers if
they are running Confluent Enterprise . If not, you will need to separately install
the confluent-rebalancer
package onto all Kafka brokers.
Confirm the Confluent Metrics Reporter jar file is on the broker:
Configuration¶
By default, the Confluent Metrics Reporter is not enabled. To enable it, you
will need to edit each Kafka broker’s server.properties
and set the
metric.reporters
and confluent.metrics.reporter.bootstrap.servers
configuration parameters. For the changes to take effect, you will need to
perform a rolling restart of the brokers.
For your convenience, the server.properties
shipped with the Confluent
platform already provides these configuration parameters but they are commented out.
Uncomment the following lines in the Confluent Metrics Reporter
section,
which by default will publish metrics to your production traffic cluster.
If you prefer to publish metrics to a Kafka cluster that is different from your
production traffic cluster, modify confluent.metrics.reporter.bootstrap.servers
to point to Kafka brokers in the dedicated metrics cluster.
metric.reporters=io.confluent.metrics.reporter.ConfluentMetricsReporter
# The bootstrap servers refer to your monitoring cluster
confluent.metrics.reporter.bootstrap.servers=broker1:9092,broker2:9092,broker3:9092
Update confluent.metrics.reporter.topic.replicas
if there are less
than 3 brokers in the Kafka metrics cluster.
A rolling restart of the brokers is required for the config changes to be picked up. After the restart,
the reporter should output messaged similar to the following to standard output and server.log
:
[2017-07-17 17:11:32,304] INFO KafkaConfig values:
...
metric.reporters = [io.confluent.metrics.reporter.ConfluentMetricsReporter]
...
[2017-07-17 17:11:32,611] INFO ConfluentMetricsReporterConfig values:
confluent.metrics.reporter.bootstrap.servers = localhost:9092
confluent.metrics.reporter.publish.ms = 15000
...
...
[2017-07-17 17:11:48,288] INFO Created metrics reporter topic _confluent-metrics (io.confluent.metrics.reporter.ConfluentMetricsReporter)
Once the topic is created, the metrics reporter will produce to the topic periodically (every 15 seconds by default).
By default, the Confluent Metrics Reporter logs events to server.log
on each
Kafka broker. For more verbose logging, add the following line to ./etc/kafka/log4j.properties
:
log4j.logger.io.confluent.metrics.reporter.ConfluentMetricsReporter=DEBUG
Note
A rolling bounce of the Kafka brokers is required for any of the above configuration changes to take effect.
Once the Confluent Metrics Reporter is properly configured and the brokers have been restarted, the topic will be automatically created and metrics data will be produced to the topic periodically (every 15 seconds by default).
Message size¶
If the total number of partitions in the Kafka cluster is large, it may be possible that the produced message is larger than the maximum allowed by the broker for the metrics topic. As of 3.3.0, the topic is configured to accept messages with size up to 10 MB by default. In previous versions, the broker default was used (1 MB by default). The following would be logged if a message is rejected due to its size:
[2017-07-19 00:34:50,664] WARN Failed to produce metrics message (io.confluent.metrics.reporter.ConfluentMetricsReporter)
org.apache.kafka.common.errors.RecordTooLargeException: The request included a message larger than the max message size the server will accept.
The solution is to increase the max.message.bytes
config for the metrics topic. For example, the
following updates it to be twice the default:
./bin/kafka-topics --alter --zookeeper localhost:2181 --config max.message.bytes=20000000 --topic _confluent-metrics
We intend to remove the need for this in a future release.
Configuration Options¶
Only the first config below is required although confluent.metrics.reporter.topic.replicas
should be updated if there are less than 3 brokers in the Kafka metrics cluster.
The other configs allow one to tune the publisher for additional performance and reliability. Configs categorised with “Importance: low” do not need to be modified in the common case.
confluent.metrics.reporter.bootstrap.servers
Bootstrap servers for the Kafka cluster metrics will be published to. The metrics cluster may be different from the cluster(s) whose metrics are being collected. Several Kafka clusters can publish to a single metrics cluster, for example.
- Type: string
- Importance: high
confluent.metrics.reporter.topic.max.message.bytes
Maximum message size for the metrics topic.
- Type: int
- Default: 10485760
- Valid Values: [0,…]
- Importance: medium
confluent.metrics.reporter.publish.ms
The Confluent Metrics Reporter will publish new metrics to the metrics topic in intervals defined by this setting. This means that control center system health data lags by this duration, or that rebalancer may compute a plan based on broker data that is stale by this duration. The default is a reasonable value for production environments and it typically does not need to be changed.
- Type: long
- Default: 15000
- Importance: low
confluent.metrics.reporter.topic
Topic on which metrics data will be written.
- Type: string
- Default: _confluent-metrics
- Importance: low
confluent.metrics.reporter.topic.create
Create the metrics topic if it does not exist.
- Type: boolean
- Default: true
- Importance: low
confluent.metrics.reporter.topic.partitions
Number of partitions in the metrics topic.
- Type: int
- Default: 12
- Importance: low
confluent.metrics.reporter.topic.replicas
Number of replicas in the metric topic. It must not be higher than the number of brokers in the Kafka cluster.
- Type: int
- Default: 3
- Importance: low
confluent.metrics.reporter.topic.retention.bytes
Retention bytes for the metrics topic.
- Type: long
- Default: -1
- Importance: low
confluent.metrics.reporter.topic.retention.ms
Retention time for the metrics topic.
- Type: long
- Default: 259200000 (3 days)
- Importance: low
confluent.metrics.reporter.topic.roll.ms
Log rolling time for the metrics topic.
- Type: long
- Default: 14400000 (4 hours)
- Importance: low
confluent.metrics.reporter.volume.metrics.refresh.ms
The minimum interval at which to fetch new volume metrics.
- Type: long
- Default: 15000
- Importance: low
confluent.metrics.reporter.whitelist
Regex matching the yammer metric mbean name or Kafka metric name to be published to the metrics topic.
By default this includes all the metrics required by Confluent Control Center and Confluent Auto Data Balancer. This should typically never be modified unless requested by Confluent.
- Type: string
- Default: includes all the metrics necessary for Confluent Control Center and Confluent Auto Data Balancer
- Importance: low
Security¶
When configuring Metrics Reporter on a secure Kafka broker, the embedded producer (that sends metrics data to
_confluent-metrics
topic) in Metrics Reporter needs to have the correct
client security configurations prefixed with confluent.metrics.reporter.
Authentication¶
For SSL related configs refer to SSL for Kafka Clients
confluent.metrics.reporter.security.protocol=SSL confluent.metrics.reporter.ssl.truststore.location=/var/private/ssl/kafka.client.truststore.jks confluent.metrics.reporter.ssl.truststore.password=test1234 confluent.metrics.reporter.ssl.keystore.location=/var/private/ssl/kafka.client.keystore.jks confluent.metrics.reporter.ssl.keystore.password=test1234 confluent.metrics.reporter.ssl.key.password=test1234
For SASL related configs refer to SASL for Kafka Clients
confluent.metrics.reporter.sasl.mechanism=PLAIN confluent.metrics.reporter.security.protocol=SASL_PLAINTEXT
Pass the JAAS config file location as JVM parameter, more details here
-Djava.security.auth.login.config=/etc/kafka/kafka_client_jaas.conf
Authorization¶
- The broker’s principal must have permission to create the metrics topic in the configured Kafka cluster.
- The broker’s principal must have permission to produce to the metrics topic.
- The tool’s principal must have permission to consume from the metrics topic. This would typically be the Confluent Control Center and/or the Auto Data Balancer, but it also applies to the Console Consumer if it’s used to inspect the topic.
If you have ACLs set up for Kafka, use the bin/kafka-acls
command line tool to add/remove ACLs on topics, for
example:
bin/kafka-acls --authorizer-properties zookeeper.connect=localhost:2181 --add \ --allow-principal User:Alice --allow-host 198.51.100.0 \ --operation Read --operation Write --topic _confluent-metrics
Verification¶
Verify the Kafka brokers are properly sending metrics data to the correct topic, which by default is _confluent-metrics
.
bin/kafka-console-consumer.sh --topic _confluent-metrics --bootstrap-server <bootstrap-server> --formatter io.confluent.metrics.reporter.ConfluentMetricsFormatter
Verify the Confluent Metrics Reporter are logging events to server.log
. You should see messages similar to the following:
[2017-07-17 17:11:32,304] INFO KafkaConfig values:
...
metric.reporters = [io.confluent.metrics.reporter.ConfluentMetricsReporter]
...
[2017-07-17 17:11:32,611] INFO ConfluentMetricsReporterConfig values:
confluent.metrics.reporter.bootstrap.servers = localhost:9092
confluent.metrics.reporter.publish.ms = 15000
...
...
[2017-07-17 17:11:48,288] INFO Created metrics reporter topic _confluent-metrics (io.confluent.metrics.reporter.ConfluentMetricsReporter)
If you enabled more verbose logging, e.g. DEBUG, you should see messages with additional information, which may be helpful during debugging. They may be similar to the following:
[2017-07-19 00:54:02,619] DEBUG Metrics reporter topic _confluent-metrics already exists (io.confluent.metrics.reporter.ConfluentMetricsReporter)
[2017-07-19 00:54:02,622] DEBUG Begin publishing metrics (io.confluent.metrics.reporter.ConfluentMetricsReporter)
...
[2017-07-19 00:54:02,772] DEBUG Produced metrics message of size 52104 with offset 316 to topic partition _confluent-metrics-6 (io.confluent.metrics.reporter.ConfluentMetricsReporter)