gpt4 book ai didi

java - 将编码器添加到 Sentry 附加程序时出错

转载 作者:行者123 更新时间:2023-12-04 07:38:18 26 4
gpt4 key购买 nike

尝试在 spring 应用程序中集成 sentry(logback) 但收到此错误

java.lang.IllegalStateException: Logback configuration error detected: 
ERROR in ch.qos.logback.core.joran.spi.Interpreter@32:18 - no applicable action for [encoder], current ElementPath is [[configuration][appender][encoder]]
ERROR in ch.qos.logback.core.joran.spi.Interpreter@33:22 - no applicable action for [pattern], current ElementPath is [[configuration][appender][encoder][pattern]]
logback.xml 文件看起来像这样。我从那里的官方文档中获取了哨兵代码。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<!-- <include resource="org/springframework/boot/logging/logback/defaults.xml"/><include resource="org/springframework/boot/logging/logback/console-appender.xml"/> -->
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<!-- encoders are assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] [%file:%line] - %msg %n</pattern>
</encoder>
</appender>
<appender name="Sentry" class="io.sentry.logback.SentryAppender">
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>ERROR</level>
</filter>
<!-- Optionally add an encoder -->
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%level] from %logger in %thread : %msg %n</pattern>
</encoder>
</appender>

<root level="DEBUG">
<appender-ref ref="CONSOLE" />
</root>

<root level="ERROR">
<appender-ref ref="CONSOLE"/>
<appender-ref ref="Sentry"/>
</root>
</configuration>
我在这里做错了什么?

最佳答案

不支持为 SentryAppender 配置编码器.所有信息,如级别、记录器、线程等,都以结构化的方式与日志消息一起发送到 Sentry - 无需配置编码器。
使用 Sentry Spring Boot Starter 时,SentryAppender可以自动配置,这样您就不需要将它添加到 logback.xml (见 docs)
如果我们遗漏了一个用例并且您认为编码器应该是可配置的,请raise an issue .

关于java - 将编码器添加到 Sentry 附加程序时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67632061/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com