~charmers/charms/trusty/rsyslog/trunk

9.1.1 by Jorge Niedbalski R.
- This resolves issue lp:1310793 , exposing the http://docs.openstack.org/trunk/openstack-ops/content/logging_monitoring.html#rsyslog_server_config options.
1
# Remote listening for aggregation
16 by Jorge Niedbalski
[niedbalski] Added RELP protocol support
2
{% if protocol == "udp" %}
9.1.1 by Jorge Niedbalski R.
- This resolves issue lp:1310793 , exposing the http://docs.openstack.org/trunk/openstack-ops/content/logging_monitoring.html#rsyslog_server_config options.
3
$ModLoad imudp
4
$UDPServerRun 514
20.1.1 by Tim Kuhlman
Add tcp support
5
{% elif protocol == "tcp" %}
6
$ModLoad imtcp
7
$InputTCPServerRun 514
16 by Jorge Niedbalski
[niedbalski] Added RELP protocol support
8
{% else %}
9
$ModLoad imrelp
10
$InputRELPServerRun 2514
11
{% endif %}
9.1.1 by Jorge Niedbalski R.
- This resolves issue lp:1310793 , exposing the http://docs.openstack.org/trunk/openstack-ops/content/logging_monitoring.html#rsyslog_server_config options.
12
9.1.2 by Jorge Niedbalski R.
- Complete rewrote of the charm to make use of the python charmhelpers.
13
{% if nova_logs == True %}
9.1.1 by Jorge Niedbalski R.
- This resolves issue lp:1310793 , exposing the http://docs.openstack.org/trunk/openstack-ops/content/logging_monitoring.html#rsyslog_server_config options.
14
   {% include 'nova-logging.conf' %}
15
{% endif %}