puppet-prod/site/profiles/manifests/metrics/default.pp
Ben Vincent a21b7ffc96 feat: setup metrics agents
- set puppet::puppetdb_api class to export puppetdb
- set infra::dns::server class to export bind
- set all to export node and systemd metrics
2023-11-17 23:12:37 +11:00

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
}