Puppet Class: profile::kafka::monitoring
- Defined in:
- modules/profile/manifests/kafka/monitoring.pp
Overview
SPDX-License-Identifier: Apache-2.0
class profile::kafka::cluster::monitoring
Tools to monitor and expose metrics about a Kafka cluster
6 7 8 9 10 11 12 13 14 |
# File 'modules/profile/manifests/kafka/monitoring.pp', line 6
class profile::kafka::monitoring(
Hash[String,Hash] $config = lookup('profile::kafka::monitoring::config'),
Array[String] $clusters = lookup('profile::kafka::monitoring::clusters'),
) {
profile::kafka::burrow { $clusters:
monitoring_config => $config,
}
}
|