- set puppet::puppetdb_api class to export puppetdb - set infra::dns::server class to export bind - set all to export node and systemd metrics
12 lines
269 B
Puppet
12 lines
269 B
Puppet
# profiles::metrics::default
|
|
#
|
|
# these exporters will be setup on all nodes
|
|
class profiles::metrics::default (
|
|
Boolean $node_exporter = true,
|
|
Boolean $systemd_exporter = true,
|
|
) {
|
|
|
|
include prometheus::node_exporter
|
|
include prometheus::systemd_exporter
|
|
}
|