91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

【總結】log4j on sentry實踐

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

1、sentry

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

2、log4j/logback on sentry

Sentry中提供log4j的Appender,可以將log中特定等級日志發送到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
  • 配置在系統環境變量中
    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問一下細節

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

AI

庄浪县| 乌恰县| 黄陵县| 美姑县| 吉木乃县| 泾源县| 渝中区| 漳浦县| 三明市| 红河县| 政和县| 琼海市| 西吉县| 东城区| 青冈县| 瑞金市| 临朐县| 西畴县| 融水| 侯马市| 雷州市| 宾川县| 开阳县| 秦安县| 都江堰市| 衡阳市| 无棣县| 慈溪市| 连城县| 肃北| 南丹县| 稷山县| 昭通市| 宁化县| 喜德县| 新巴尔虎右旗| 平塘县| 沂源县| 小金县| 武安市| 七台河市|