Puppet Class: profile::prometheus::nutcracker_exporter
- Defined in:
- modules/profile/manifests/prometheus/nutcracker_exporter.pp
Overview
SPDX-License-Identifier: Apache-2.0
2 3 4 5 6 7 8 9 10 |
# File 'modules/profile/manifests/prometheus/nutcracker_exporter.pp', line 2
class profile::prometheus::nutcracker_exporter {
ensure_packages('prometheus-nutcracker-exporter')
service { 'prometheus-nutcracker-exporter':
ensure => running,
require => Package['prometheus-nutcracker-exporter'],
}
profile::auto_restarts::service { 'prometheus-nutcracker-exporter': }
}
|