您好,登錄后才能下訂單哦!
Sentry一個開源錯誤跟蹤工具,能夠讓開發(fā)者實時監(jiān)控和修復崩潰程序,持續(xù)迭代,提高效率。程序代碼中集成Sentry之后,能夠將異常信息發(fā)送到Sentry服務,并且可以通過配置Sentry插件,能夠實現通過郵件、釘釘等告警通知。
Sentry官網:https://sentry.io/welcome/
Sentry中提供log4j的Appender,可以將log中特定等級日志發(fā)送到Sentry中
代碼中集成Sentry
使用Maven:
<dependency>
<groupId>io.sentry</groupId>
<artifactId>sentry-logback</artifactId>
<version>1.7.5</version>
</dependency>
使用SBT:
libraryDependencies += "io.sentry" % "sentry-logback" % "1.7.5"
logback.xml的配置
<configuration>
<!-- Configure the Console appender -->
<appender name="Console" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<!-- Configure the Sentry appender, overriding the logging threshold to the WARN level -->
<appender name="Sentry" class="io.sentry.logback.SentryAppender">
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>WARN</level>
</filter>
</appender>
<!-- Enable the Console and Sentry appenders, Console is provided as an example
of a non-Sentry logger that is set to a different logging threshold -->
<root level="INFO">
<appender-ref ref="Console" />
<appender-ref ref="Sentry" />
</root>
</configuration>
有以下集中實現的方式。
我采用的是第二個方式,配置啟動程序的JVM參數
具體工程代碼可以參考 https://github.com/chocolateBlack/loghub-logback-sentry
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。