Puppet Class: vector
- Defined in:
- manifests/init.pp
Summary
Vector module for PuppetOverview
vector
Installs, configures, then runs the Vector log and metric tool on RedHat and Debian type systems Note - this does not manage the repositories, it is assumed they are already configured
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
# File 'manifests/init.pp', line 70
class vector (
Optional[String] $version,
Boolean $install_vector,
String $config_dir,
String $config_dir_mode,
String $data_dir,
String $data_dir_mode,
String $user,
String $group,
Boolean $manage_user,
Hash $user_opts,
Boolean $manage_group,
Hash $group_opts,
String $service_name,
Boolean $manage_systemd,
String $vector_executable,
Vector::Ensure $service_ensure,
Vector::Enabled $service_enabled,
String $environment_file,
Boolean $notify_on_config_change,
String $service_restart = 'always',
Hash $global_options = {},
Hash $environment_vars = {},
Hash $config_files = {},
Hash $sources = {},
Hash $transforms = {},
Hash $sinks = {},
Hash $systemd_dropins = {},
) {
contain vector::install
contain vector::user
contain vector::setup
contain vector::configure
contain vector::service
Class['vector::install']
-> Class['vector::user']
-> Class['vector::setup']
-> Class['vector::configure']
-> Class['vector::service']
}
|