forked from kpx-dev/ansible-zookeeper
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from PerimeterX/master
Added saner production rolling log file options
- Loading branch information
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Define some default values that can be overridden by system properties | ||
zookeeper.root.logger=INFO, CONSOLE, ROLLINGFILE | ||
zookeeper.console.threshold=INFO | ||
zookeeper.log.dir=. | ||
zookeeper.log.file=zookeeper.log | ||
zookeeper.log.threshold=DEBUG | ||
zookeeper.tracelog.dir=. | ||
zookeeper.tracelog.file=zookeeper_trace.log | ||
|
||
# | ||
# ZooKeeper Logging Configuration | ||
# | ||
|
||
# Format is "<default threshold> (, <appender>)+ | ||
|
||
# DEFAULT: console appender only | ||
log4j.rootLogger=${zookeeper.root.logger} | ||
|
||
# Example with rolling log file | ||
#log4j.rootLogger=DEBUG, CONSOLE, ROLLINGFILE | ||
|
||
# Example with rolling log file and tracing | ||
#log4j.rootLogger=TRACE, CONSOLE, ROLLINGFILE, TRACEFILE | ||
|
||
# | ||
# Log INFO level and above messages to the console | ||
# | ||
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender | ||
log4j.appender.CONSOLE.Threshold=${zookeeper.console.threshold} | ||
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout | ||
log4j.appender.CONSOLE.layout.ConversionPattern=%d{ISO8601} [myid:%X{myid}] - %-5p [%t:%C{1}@%L] - %m%n | ||
|
||
# | ||
# Add ROLLINGFILE to rootLogger to get log file output | ||
# Log DEBUG level and above messages to a log file | ||
log4j.appender.ROLLINGFILE=org.apache.log4j.RollingFileAppender | ||
log4j.appender.ROLLINGFILE.Threshold=${zookeeper.log.threshold} | ||
log4j.appender.ROLLINGFILE.File=${zookeeper.log.dir}/${zookeeper.log.file} | ||
|
||
# Max log file size of 10MB | ||
log4j.appender.ROLLINGFILE.MaxFileSize={{ zookeeper_rolling_log_file_max_size }} | ||
# uncomment the next line to limit number of backup files | ||
log4j.appender.ROLLINGFILE.MaxBackupIndex={{ zookeeper_max_rolling_log_file_count }} | ||
|
||
log4j.appender.ROLLINGFILE.layout=org.apache.log4j.PatternLayout | ||
log4j.appender.ROLLINGFILE.layout.ConversionPattern=%d{ISO8601} [myid:%X{myid}] - %-5p [%t:%C{1}@%L] - %m%n | ||
|
||
|
||
# | ||
# Add TRACEFILE to rootLogger to get log file output | ||
# Log DEBUG level and above messages to a log file | ||
log4j.appender.TRACEFILE=org.apache.log4j.FileAppender | ||
log4j.appender.TRACEFILE.Threshold=TRACE | ||
log4j.appender.TRACEFILE.File=${zookeeper.tracelog.dir}/${zookeeper.tracelog.file} | ||
|
||
log4j.appender.TRACEFILE.layout=org.apache.log4j.PatternLayout | ||
### Notice we are including log4j's NDC here (%x) | ||
log4j.appender.TRACEFILE.layout.ConversionPattern=%d{ISO8601} [myid:%X{myid}] - %-5p [%t:%C{1}@%L][%x] - %m%n |