Merge pull request 'feat: stop installing systemd exported by default' (#94) from neoloc/systemd_exporter_removal into develop

Reviewed-on: https://git.query.consul/unkinben/puppet-prod/pulls/94
This commit is contained in:
Ben Vincent 2024-07-07 15:02:48 +10:00
commit 152ffaa1d3

View File

@ -3,9 +3,9 @@
# these exporters will be setup on all nodes
class profiles::metrics::default (
Boolean $node_exporter = true,
Boolean $systemd_exporter = true,
Boolean $systemd_exporter = false,
) {
include prometheus::node_exporter
include prometheus::systemd_exporter
if $node_exporter { include prometheus::node_exporter }
if $systemd_exporter { include prometheus::systemd_exporter }
}