Configuring Log File Rotation
Message log entries for SIP and Diameter messages are stored in the main Converged Application Server log file by default. You can optionally store the messages in a dedicated log file. Using a separate file makes it easier to locate message logs, and also enables you to use Converged Application Server's log rotation features to better manage logged data.
Log rotation is configured using several elements nested within the main message-debug
element in sipserver.xml. As with the other XML elements described in this section, you can also configure values using the Configuration->Message Debug tab of the SIP Server Administration Console extension.
Table 15-3 describes each element. Note that a server restart is necessary in order to initiate independent logging and log rotation.
Table 15-3 XML Elements for Configuring Log Rotation
Element | Description |
---|---|
|
Determines whether a separate log file is used to store message debug log messages. By default, this element is set to false and messages are logged in the general log file. |
|
Configures the minimum size, in kilobytes, after which the server automatically rotate log messages into another file. This value is used when the |
|
Defines the name of the log file for storing messages. By default, the log files are stored under |
|
Configures the criterion for moving older log messages to a different file. This element may have one of the following values:
|
|
Specifies whether or not the server places a limit on the total number of log files stored after a log rotation. By default, this element is set to false. |
|
Configures the maximum number of log files to keep when |
|
Determines whether the server must rotate the log file at server startup time. |
|
Configures a directory in which to store rotated log files. By default, rotated log files are stored in the same directory as the active log file. |
|
Configures a start time for log rotation when using the |
|
Specifies the interval, in hours, after which the log file is rotated. This value is used when the |
|
Specifies the pattern to use for rending dates in log file entries. The value of this element must conform to the |
Example 15-5 shows a sample message-debug
configuration using log rotation.
Example 15-5 Sample Log Rotation Configuration
<?xml version='1.0' encoding='UTF-8'?> <sip-server xmlns="http://www.bea.com/ns/wlcp/wlss/300" xmlns:sec="http://www.bea.com/ns/weblogic/90/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wls="http://www.bea.com/ns/weblogic/90/security/wls"> <message-debug> <logging-enabled>true</logging-enabled> <file-min-size>500</file-min-size> <log-filename>sip-messages.log</log-filename> <rotation-type>byTime</rotation-type> <number-of-files-limited>true</number-of-files-limited> <file-count>5</file-count> <rotate-log-on-startup>false</rotate-log-on-startup> <log-file-rotation-dir>old_logs</log-file-rotation-dir> <rotation-time>00:00</rotation-time> <file-time-span>20</file-time-span> <date-format-pattern>MMM d, yyyy h:mm a z</date-format-pattern> </message-debug> </sip-server>