Puppet Class: mediawiki::syslog

Defined in:
modules/mediawiki/manifests/syslog.pp

Overview

Class: mediawiki::syslog

Hosts running MediaWiki configure Apache and HHVM to log to syslog. This Puppet class configures rsyslog to handle log messages from Apache by writing them to disk and forwarding them to the MediaWiki log aggregator via UDP. It also sets up log rotation for the local log files.

Parameters:

  • forward_syslog (Optional[String]) (defaults to: undef)
  • log_aggregator (Optional[String]) (defaults to: undef)


9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'modules/mediawiki/manifests/syslog.pp', line 9

class mediawiki::syslog(
    Optional[String] $forward_syslog = undef,
    Optional[String] $log_aggregator = undef
) {

    # We assign a priority of 40 to MediaWiki's rsyslog config file
    # so we can intercept log messages before they fall through to
    # the firehose in 50-default.conf.

    rsyslog::conf { 'mediawiki':
        content  => template('mediawiki/rsyslog.conf.erb'),
        priority => 40,
    }


    # Set up log rotation for /var/log/apache2.log. In addition to
    # regular time-based rotation, rsyslog will invoke logrotate whenever
    # apache2.log exceeds 100MB.

    file { '/etc/logrotate.d/mediawiki_apache':
        source => 'puppet:///modules/mediawiki/logrotate.d_mediawiki_apache',
        owner  => 'root',
        group  => 'root',
        mode   => '0444',
        before => Rsyslog::Conf['mediawiki'],
    }
}