FAQ Tag: log

How do I send the Muse Proxy log files for statistical analysis?

Statistics are offered as a service to Muse Proxy customers, no matter they are locally hosted or on cloud. The statistics are generated from content of the Muse Proxy log files: – access log (access.log). – statistics log (MuseProxyStatistics.log). More details about the Muse Proxy log files in the Muse Proxy Advanced Configuration manual, chapter…

Ho to change the logging to generate filenames with the date stamp?

The default logger configuration of Muse Proxy is to produce *.log.1, *.log.2…*.log.10 files which rotate by size when reaching 10485760 bytes or at midnight, depending on whichever condition is first met: <LOGGER enable=”true” flush=”15000″ name=”default”>  <DEBUG>NOTICE</DEBUG>  <LOG_CLASS>com.edulib.ice.util.log.ICETextLog</LOG_CLASS>  <LOG>${MUSE_HOME}/proxy/logs/MuseProxy.log</LOG>  <LOG_SIZE>10485760</LOG_SIZE>  <LOG_FORMAT>{0, date,yyyy-MM-dd’T’HH:mm:ss.SSS z} {1}: {4}: {3}</LOG_FORMAT>  <LOG_MAX_BACKUP_INDEX>10</LOG_MAX_BACKUP_INDEX>  <LOG_TIME_INTERVAL>24</LOG_TIME_INTERVAL>  <LOG_SCHEDULED_ROTATION hour=”0″ minute=”00″ type=”daily”/> </LOGGER> <LOGGER enable=”true” flush=”15000″…