forked from edupr91/puppet-websphere
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjvm_log.pp
More file actions
20 lines (20 loc) · 699 Bytes
/
jvm_log.pp
File metadata and controls
20 lines (20 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
websphere_jvm_log { 'AppNode02 JVM Logs':
profile_base => '/opt/IBM/WebSphere85/Profiles',
dmgr_profile => 'PROFILE_DMGR_01',
cell => 'CELL_01',
scope => 'node',
node => 'appNode02',
server => 'AppServer02',
out_filename => '/tmp/SystemOut.log',
out_rollover_type => 'BOTH',
out_rollover_size => '7',
out_maxnum => '200',
out_start_hour => '13',
out_rollover_period => '24',
err_filename => '/tmp/SystemErr.log',
err_rollover_type => 'BOTH',
err_rollover_size => '7',
err_maxnum => '3',
err_start_hour => '13',
err_rollover_period => '24',
}