为 SpringServer dm 2 配置跟踪

发布于 2024-09-01 00:31:40 字数 412 浏览 2 评论 0原文

根据 Spring 文档,

默认情况下,dm 服务器跟踪文件 被称为 $SERVER_HOME/serviceability/logs/dm-server/log_i.log ...索引 i 从 1 到 4 变化, 滚动的基础上,每个日志文件 超过 10Mb。

我知道可以在 server.config 中更改默认跟踪文件名。是否可以更改滚动之前保留的日志文件数量和/或最大日志文件大小?如何?

According to the Spring documentation,

By default, the dm Server trace file
is called
$SERVER_HOME/serviceability/logs/dm-server/log_i.log
... The index i varies from 1 to 4, on
a rolling basis, as each log file
exceeds 10Mb.

I'm aware that the default trace file name can be changed in server.config. Is it possible to change the number of log files that are kept before rolling over and/or the maximum log file size? How?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猛虎独行 2024-09-08 00:31:40

是的。编辑 config/servicability.xml 并重新启动服务器。 Virgo(向 Eclipse.org 捐赠 dm 服务器) 文档 提供了更多详细信息。

要编辑的元素是 MaxIndex 和 MaxFileSize,如下面的摘录所示:

<appender name="${applicationName}_LOG_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
        <file>serviceability/logs/${applicationName}/log.log</file>
        <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
                <FileNamePattern>serviceability/logs/${applicationName}/log_%i.log</FileNamePattern>
                <MinIndex>1</MinIndex>
                <MaxIndex>4</MaxIndex>
        </rollingPolicy>
        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
                <MaxFileSize>10MB</MaxFileSize>
        </triggeringPolicy>
        <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
                <Pattern>[%d{yyyy-MM-dd HH:mm:ss.SSS}] %-28.28thread %-64.64logger{64} %X{medic.eventCode} %msg %ex%n</Pattern>
        </encoder>
</appender>

Yes. Edit config/servicability.xml and restart the server. The Virgo (donation of dm Server to Eclipse.org) documentation gives some more detail.

The elements to edit are MaxIndex and MaxFileSize as shown in the extract below:

<appender name="${applicationName}_LOG_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
        <file>serviceability/logs/${applicationName}/log.log</file>
        <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
                <FileNamePattern>serviceability/logs/${applicationName}/log_%i.log</FileNamePattern>
                <MinIndex>1</MinIndex>
                <MaxIndex>4</MaxIndex>
        </rollingPolicy>
        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
                <MaxFileSize>10MB</MaxFileSize>
        </triggeringPolicy>
        <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
                <Pattern>[%d{yyyy-MM-dd HH:mm:ss.SSS}] %-28.28thread %-64.64logger{64} %X{medic.eventCode} %msg %ex%n</Pattern>
        </encoder>
</appender>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文