Introduction
JS7 - Log Management is offered with JOC Cockpit for central receipt of warnings and errors created from log output of Controllers and Agents.
- Service
- The JS7 - Log Notification Service is used to collect warnings and errors from log output of Controllers and Agents and to create JS7 - Notifications.
- The service is compliant to RFC5424, aka Syslog Protocol and offers restart capabilities.
- Clients
- Controller and Agents can act as clients to the Log Notification Service. The products can be configured to report warnings and errors to the Log Notification Service.
- Users have a choice to enable forwarding of warnings and errors during installation or later on by adjusting the Log4j configuration.
- User Interface
- The JOC Cockpit offers notifications from the JS7 - Monitor view.
FEATURE AVAILABILITY STARTING FROM RELEASE 2.7.2
Log4j Configuration
By default the Log4j configuration of Controller and Agents will not make use of the Log Notification Service. Instead, users choose for which instances of Controllers and Agents they want to send errors and warnings to the Log Notification Service.
The following examples explain the Log4j configuration.
Controller Log4j Configuration
The following Log4j configuration example is available from the log4j2.xml-example
file in the Controller's <controller-data>/config
directory.
- Users can copy the
log4j2.xml-example
file to a file with the namelog4j2.xml
. Should this file exist, then the<Syslog>
element from the example file can be copied. - Users have to adjust settings from the
<Syslog>
configuration element.
Explanations:
<Syslog>
: The XML element holds the required configuration. The following attributes are available:name
: users a free to choose a name for the Syslog Appender.format
: The valueRFC5424
is required.host
: The hostname or IP address of JOC Cockpit operating the Log Notification Service.port
: The port to which the Log Notificatio Service listens.protocol
: The valueUDP
is required.
<PatternLayout>
: The XML element specifies the pattern used to send messages. The pattern must not be changed.
Agent Log4j Configuration
The following Log4j configuration is available from the log4j2.xml-example
file in the Agent's <agent-data>/config
directory.
- Users can copy the
log4j2.xml-example
file to a file with the namelog4j2.xml
. Should this file exist, then the<Syslog>
element from the example file can be copied. - Users have to adjust settings from the
<Syslog>
configuration element.
Explanations:
- Similar to Controller Log4j configuration, see above.