Puppet Class: beats::protocols::redis
- Defined in:
- manifests/protocols/redis.pp
Overview
Redis
2 3 4 5 6 7 8 9 10 |
# File 'manifests/protocols/redis.pp', line 2
class beats::protocols::redis (
$ports = '6379'
) {
concat::fragment {'protocols-redis':
target => '/etc/packetbeat/packetbeat.yml',
content => template('beats/protocols/protocols.redis.erb'),
order => 14,
}
}
|