Puppet Class: classroom_legacy::master::perf_logging

Defined in:
manifests/master/perf_logging.pp

Overview

Performance logging for the classroom.



2
3
4
5
6
7
8
9
10
11
12
13
14
15
# File 'manifests/master/perf_logging.pp', line 2

class classroom_legacy::master::perf_logging {
  assert_private('This class should not be called directly')

  package { ['sysstat', 'tcpdump']:
    ensure => present,
  }

  cron { 'snapshot performance':
    ensure  => present,
    command => '/usr/local/bin/classroom performance snapshot',
    minute  => ['12', '42'],
  }

}