blob: 030c5ee130cb76a7f2d15254f555804f2d60546f [file] [log] [blame]
Ravindra Bakkamanthalad9007d62017-05-31 15:54:24 -04001################################### Set concurrentHashMap and timer info #######################
2#Timer initial delay and the delay between in milliseconds before task is to be execute.
3timer.delay.time=1000
4#Timer scheduleAtFixedRate period - time in milliseconds between successive task executions.
5check.interval= 30000
6#Longest time an event info can be stored in the concurrentHashMap for logging - in seconds.
7event.expired.time=86400
8#Size of the concurrentHashMap which stores the event starting time, etc - when its size reaches this limit, the Timer gets executed
9#to remove all expired records from this concurrentHashMap.
10concurrentHashMap.limit=5000
11#Size of the concurrentHashMap - when its size drops to this point, stop the Timer
12stop.check.point=2500
13################################### Set logging format #############################################
14# set EELF for EELF logging format, set LOG4J for using log4j, set SYSTEMOUT for using system.out.println
15logger.type=SYSTEMOUT
16#################################### Set level for EELF or SYSTEMOUT logging ##################################
17# Set level for debug file. Set DEBUG to enable .info, .warn and .debug; set INFO for enable .info and .warn; set OFF to disable all
18debugLogger.level=INFO
19# Set level for metrics file. Set OFF to disable; set ON to enable
20metricsLogger.level=ON
21# Set level for error file. Set OFF to disable; set ON to enable
22error.level=ON
23# Set level for audit file. Set OFF to disable; set ON to enable
24audit.level=ON