Puppet Class: logstash
- Defined in:
- modules/logstash/manifests/init.pp
Overview
Class: logstash
Logstash is a flexible log aggregation framework built on top of Elasticsearch, a distributed document store. It lets you configure logging pipelines that ingress log data from various sources in a variety of formats.
Parameters:
-
$heap_memory: amount of memory to allocate to logstash.
-
$pipeline_workers: number of worker threads to run to process filters
-
$pipeline_batch_size: batch size to reach per worker before executing a flush
-
$pipeline_batch_delay: execute a flush after this many milliseconds except when batch size has been reached
-
$java_package: which java package to install
-
$gc_log: turn off/on garbage collector plain text logs
-
$jmx_exporter_port: if defined, what port to listen on
-
$jmx_exporter_config: if defined, what's the path to jmx_exporter's config
-
$enable_dlq: enables the dead letter queue
-
$dlq_max_bytes: maximum size of each dead letter queue
-
$java_home: overrides java home directory. Runtime defaults to bundled jdk.
Sample usage:
class { 'logstash':
heap_memory => "192m",
pipeline_workers => 3,
}
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
# File 'modules/logstash/manifests/init.pp', line 27
class logstash (
String $heap_memory = '192m',
Integer $pipeline_workers = $::processorcount,
Integer $pipeline_batch_size = 125,
Integer $pipeline_batch_delay = 50,
String $java_package = 'openjdk-8-jdk',
String $logstash_package = 'logstash',
Boolean $gc_log = true,
Optional[Integer] $jmx_exporter_port = undef,
Optional[String] $jmx_exporter_config = undef,
Integer[5,7] $logstash_version = 5,
Boolean $manage_service = true,
Enum['plain', 'json'] $log_format = 'plain',
Boolean $enable_dlq = false,
String $dlq_max_bytes = '1024mb',
Array[Stdlib::Fqdn] $dlq_hosts = [],
Optional[Stdlib::Unixpath] $java_home = undef,
) {
package { 'logstash':
ensure => 'present',
name => $logstash_package,
require => Package[$java_package],
}
if $gc_log == true {
#TODO: move java_package to java_version, or similar
$gc_log_flags = $java_package ? {
'openjdk-8-jdk' => [
'-Xloggc:/var/log/logstash/logstash_jvm_gc.%p.log',
'-XX:+PrintGCDetails',
'-XX:+PrintGCDateStamps',
'-XX:+PrintGCTimeStamps',
'-XX:+PrintTenuringDistribution',
'-XX:+PrintGCCause',
'-XX:+PrintGCApplicationStoppedTime',
'-XX:+UseGCLogFileRotation',
'-XX:NumberOfGCLogFiles=10',
'-XX:GCLogFileSize=20M',
],
'openjdk-11-jdk' => [
'-Xlog:gc*:file=/var/log/logstash/logstash_jvm_gc.%p.log::filecount=10,filesize=20000',
'-Xlog:gc+age=trace',
],
'openjdk-17-jdk' => [
'-Xlog:gc*:file=/var/log/logstash/logstash_jvm_gc.%p.log::filecount=10,filesize=20000',
'-Xlog:gc+age=trace',
],
default => fail("java_package: ${java_package} not yet supported"),
}
# JVM command line flags to be applied to logstash.service only
# TODO: move to java_version
$service_java_opts = $java_package ? {
'openjdk-11-jdk' => '-Xlog:safepoint',
'openjdk-17-jdk' => '-Xlog:safepoint',
default => '',
}
} else {
$gc_log_flags = []
}
if $logstash_version == 5 {
# This creates the deploy-service user on targets
scap::target { 'logstash/plugins':
deploy_user => 'deploy-service',
}
$plugin_zip_path = '/srv/deployment/logstash/plugins/target/releases/plugins-latest.zip'
exec { 'install-logstash-plugins':
command => "/usr/share/logstash/bin/logstash-plugin install file://${plugin_zip_path} && /usr/bin/sha256sum ${plugin_zip_path} > /etc/logstash/plugins.sha256sum",
# Only install plugins if hash of latest does not match stored state
unless => "/usr/bin/test \"$(/bin/cat /etc/logstash/plugins.sha256sum)\" = \"$(/usr/bin/sha256sum ${plugin_zip_path})\"",
# Intentionally does not notify Service['logstash'], preferring a manual rolling restart of logstash servers
require => Package['logstash'],
before => Service['logstash'],
}
}
file { '/usr/local/bin/logstash-config-test':
source => 'puppet:///modules/logstash/logstash-config-test',
owner => 'root',
group => 'root',
mode => '0555',
require => Package['logstash'],
}
file { '/etc/default/logstash':
content => template('logstash/default.erb'),
owner => 'root',
group => 'root',
mode => '0444',
require => Package['logstash'],
notify => Service['logstash'],
}
file { '/etc/logstash/jvm.options':
content => template('logstash/jvm.options.erb'),
owner => 'root',
group => 'root',
mode => '0444',
require => Package['logstash'],
notify => Service['logstash'],
}
file { '/etc/logstash/log4j2.properties':
ensure => file,
owner => 'root',
group => 'root',
content => template('logstash/log4j2.properties.erb'),
mode => '0444',
require => Package['logstash'],
}
file { '/etc/logstash/logstash.yml':
content => to_yaml({
'path.data' => '/var/lib/logstash',
'path.config' => '/etc/logstash/conf.d',
'path.logs' => '/var/log/logstash',
'pipeline.workers' => $pipeline_workers,
'pipeline.batch.size' => $pipeline_batch_size,
'pipeline.batch.delay' => $pipeline_batch_delay,
'log.format' => $log_format,
'dead_letter_queue.enable' => $enable_dlq,
'dead_letter_queue.max_bytes' => $dlq_max_bytes,
'http.port' => '9675',
}),
owner => 'root',
group => 'root',
mode => '0444',
require => Package['logstash'],
notify => Service['logstash'],
}
file { '/etc/logstash/conf.d/README':
ensure => present,
owner => 'logstash',
group => 'logstash',
source => 'puppet:///modules/logstash/conf.d/README',
require => Package['logstash'],
}
# Older 1.x versions of logstash needed this file deployed,
# but 5.x comes with a sensible service definition for systemd
# in /etc/systemd/logstash.service
file { '/lib/systemd/system/logstash.service':
ensure => absent,
}
if ($manage_service) {
service { 'logstash':
ensure => running,
provider => systemd,
enable => true,
hasstatus => true,
hasrestart => true,
}
}
if ($enable_dlq) {
file { '/usr/local/bin/cleanup-dlq':
ensure => 'present',
source => 'puppet:///modules/logstash/cleanup_dlq.py',
mode => '0755',
owner => 'root',
group => 'root',
require => Package['python3-wmflib']
}
$times = cron_splay($dlq_hosts, 'hourly', 'logstash-dlq-splay-seed')
systemd::timer::job { 'clean_up_dlq':
ensure => 'present',
description => 'Clean up dead letter queue and restart logstash',
command => '/usr/local/bin/cleanup-dlq',
interval => { 'start' => 'OnCalendar', 'interval' => $times['OnCalendar'] },
user => 'root',
syslog_identifier => 'cleanup_dlq',
require => File['/usr/local/bin/cleanup-dlq'],
}
} else {
file { '/usr/local/bin/cleanup-dlq':
ensure => 'absent'
}
systemd::timer::job { 'clean_up_dlq':
ensure => 'absent',
description => 'Clean up dead letter queue and restart logstash',
command => '/usr/local/bin/cleanup-dlq',
user => 'root',
interval => { 'start' => 'OnCalendar', 'interval' => '1h' }
}
}
}
|