Migration Guide : Migrating from Version 8.5 : Added 2 Parameters to the socketAppender Setting in the ini File
Added 2 Parameters to the socketAppender Setting in the ini File
Reason for change
The log4s socket appender will now attempt to retry the connection if the connection cannot be made when the image starts.
Change
The socketAppender line in the ini file has two new parameters:
retryCount - the number of times the connection will be retried. Zero means never retry.
retrySeconds - the numbers of seconds to wait between retry attempts.
The new syntax is socketAppender=(someCaseSensitiveAppenderName, someCaseSensitiveLoggerName , levelName, patternLayout, patternString, ipAddress, hostName , port, retryCount, retrySeconds)
Action required
Add two non-negative integer values as the last two parameters for socketAppender.
Example: socketAppender=(TestSocketAppender, root, All, EsPatternLayout, '%m %c', '127.0.0.1' , localHost, 4433, 99, 30)
 
Last modified date: 07/02/2019