Puppet Class: role::statsd

Defined in:
puppet/modules/role/manifests/statsd.pp

Overview

Class: role::statsd

Installs a Statsd instance which collects statistics from your wiki The statsd output goes to /vagrant/logs/statsd.log



5
6
7
8
9
10
11
12
13
14
# File 'puppet/modules/role/manifests/statsd.pp', line 5

class role::statsd (
) {
    include ::statsd

    mediawiki::settings { 'Statsd':
        values => {
            wgStatsdServer => "localhost:${::statsd::port}",
        },
    }
}