Puppet Class: grafana_alloy::service

Defined in:
manifests/service.pp

Summary

Manage the Alloy service

Overview



4
5
6
7
8
9
10
11
# File 'manifests/service.pp', line 4

class grafana_alloy::service () {
  assert_private()

  service { 'alloy':
    ensure => 'running',
    enable => true,
  }
}