summaryrefslogtreecommitdiff
path: root/manifests/metricbeat.pp
blob: e819bd19359eefafbc805d46f2a12171c7879a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
class profiles::metricbeat (
) {
  class { 'metricbeat':
    manage_repo => false,
    outputs     => {
      'logstash' => {
        'hosts' => ['celebrimbor:5044'],
      },
    },
  }
}