blob: 561c2be7b5c5e6a499db6df52bf8244812c0593a [file] [log] [blame]
Saryu Shahf96ef832019-06-03 16:23:04 +00001
2.. This work is licensed under a Creative Commons Attribution 4.0 International License.
3.. http://creativecommons.org/licenses/by/4.0
4
5***************************
6Feature: Controller Logging
7***************************
8
9.. contents::
10 :depth: 3
11
Saryu Shahf96ef832019-06-03 16:23:04 +000012The controller logging feature provides a way to log network topic messages to a separate controller log file for each controller. This allows a clear separation of network traffic between all of the controllers.
13
Saryu Shahf96ef832019-06-03 16:23:04 +000014Type "features enable controller-logging". The feature will now display as "enabled".
15
16 .. image:: ctrlog_enablefeature.png
17
18When the feature's enable script is executed, it will search the $POLICY_HOME/config directory for any logback files containing the prefix "logback-include-". These logger configuration files are typically provided with a feature that installs a controlloop (ex: controlloop-amsterdam and controlloop-casablanca features). Once these configuration files are found by the enable script, the logback.xml config file will be updated to include the configurations.
19
20 .. image:: ctrlog_logback.png
21
22
23Controller Logger Configuration
24^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
25
26The contents of a logback-include-``*``.xml file follows the same configuration syntax as the logback.xml file. It will contain the configurations for the logger associated with the given controller.
27
28 .. note:: A controller logger MUST be configured with the same name as the controller (ex: a controller named "casablanca" will have a logger named "casablanca").
29
30 .. image:: ctrlog_config.png
31
32
33Viewing the Controller Logs
34^^^^^^^^^^^^^^^^^^^^^^^^^^^
35
36Once a logger for the controller is configured, start the drools-pdp and navigate to the $POLICY_LOGS directory. A new controller specific network log will be added that contains all the network topic traffic of the controller.
37
38 .. image:: ctrlog_view.png
39
40The original network log remains and will append traffic information from all topics regardless of which controller it is for. To abbreviate and customize messages for the network log, refer to the `Feature MDC Filters <feature_mdcfilters.html>`_ documentation.
41
42
43End of Document
44
45