log4j on sentry实践
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了log4j on sentry实践相关的知识,希望对你有一定的参考价值。
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>
%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n WARN
3、配置Sentry的DSN(Data Source Name)
有以下集中实现的方式。
- 配置在classpath下的sentry.properties
dsn=https://public:[email protected]:port/1 - 配置在Java系统属性中(Java System Properties)
java -Dsentry.dsn=https://public:[email protected]:port/1 -jar app.jar - 配置在系统环境变量中
SENTRY_DSN=https://public:[email protected]:port/1 java -jar app.jar - 在代码中实现
import io.sentry.Sentry;
Sentry.init("https://public:[email protected]:port/1");
我采用的是第二个方式,配置启动程序的JVM参数
4、代码实现
具体工程代码可以参考 https://github.com/chocolateBlack/loghub-logback-sentry
!-->!-->!-->以上是关于log4j on sentry实践的主要内容,如果未能解决你的问题,请参考以下文章
我的Eclipse插件中找不到自定义log4j appender
[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段