是否可以根据大小旋转tomcat访问日志?经过Appendix,我找不到这样的选择。这些是我看到的唯一访问日志选项:
server.tomcat.accesslog.buffered=true # Whether to buffer output such that it is flushed only periodically.
server.tomcat.accesslog.directory=logs # Directory in which log files are created. Can be absolute or relative to the Tomcat base dir.
server.tomcat.accesslog.enabled=false # Enable access log.
server.tomcat.accesslog.file-date-format=.yyyy-MM-dd # Date format to place in the log file name.
server.tomcat.accesslog.pattern=common # Format pattern for access logs.
server.tomcat.accesslog.prefix=access_log # Log file name prefix.
server.tomcat.accesslog.rename-on-rotate=false # Whether to defer inclusion of the date stamp in the file name until rotate time.
server.tomcat.accesslog.request-attributes-enabled=false # Set request attributes for the IP address, Hostname, protocol, and port used for the request.
server.tomcat.accesslog.rotate=true # Whether to enable access log rotation.
server.tomcat.accesslog.suffix=.log # Log file name suffix.
答案 0 :(得分:1)
开箱即用的Tomcat无法做到这一点。但是有几个选择。
a)通过将server.tomcat.accesslog.rotate
设置为false来完全禁用tomcat的旋转,然后使用另一个实用程序来完成旋转,例如unix的logrotate,它支持按大小旋转。使用copytruncate
选项可以避免重新启动tomcat。
b)实施自定义AccessLogValve并覆盖rotate()
方法以根据需要自定义轮播。然后在TomcatEmbeddedServletContainerFactory中使用addContextValves注入此阀门(您可以找到自定义TomcatEmbeddedServletContainerFactory here的示例)。您还必须从getValves返回的列表中删除默认实现。
答案 1 :(得分:0)
默认情况下,Tomcat不会根据大小提供访问日志轮换,但您可以使用server.tomcat.accesslog.file-date-format
使用文件日期格式配置每小时/每月等配置。例如每小时
server.tomcat.accesslog.file-date-format=.yyyy-MM-dd.HH
如果您仍需要根据尺寸进行旋转,则可以展开Access Log Valve
。检查tomcat docs或参考this thread