溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

【總結】log4j on sentry實踐

發(fā)布時間:2020-07-26 20:15:54 來源:網絡 閱讀:3192 作者:巧克力黒 欄目:大數據

1、sentry

Sentry一個開源錯誤跟蹤工具,能夠讓開發(fā)者實時監(jiān)控和修復崩潰程序,持續(xù)迭代,提高效率。程序代碼中集成Sentry之后,能夠將異常信息發(fā)送到Sentry服務,并且可以通過配置Sentry插件,能夠實現通過郵件、釘釘等告警通知。
Sentry官網:https://sentry.io/welcome/

2、log4j/logback on sentry

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>

3、配置Sentry的DSN(Data Source Name)

有以下集中實現的方式。

  • 配置在classpath下的sentry.properties
    dsn=https://public:private@host:port/1
  • 配置在Java系統屬性中(Java System Properties)
    java -Dsentry.dsn=https://public:private@host:port/1 -jar app.jar
  • 配置在系統環(huán)境變量中
    SENTRY_DSN=https://public:private@host:port/1 java -jar app.jar
  • 在代碼中實現
    import io.sentry.Sentry;
    Sentry.init("https://public:private@host:port/1");

我采用的是第二個方式,配置啟動程序的JVM參數
【總結】log4j on sentry實踐

4、代碼實現

具體工程代碼可以參考 https://github.com/chocolateBlack/loghub-logback-sentry

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI