是的,可以将日志发送到 thorntail 中的 graylog,因为有些人已经为我们实现了一个 jboss 兼容的 gelf 日志处理程序。一些限制将是您使用的日志记录框架。我不得不通过 slf4j 使用 jboss 记录器,并且没有花更多时间让 log4j 运行。也许您会发现如何实现这一点。
我在哪里可以得到一个 jboss 兼容的 gelf 日志处理程序?
在这里,您可以找到支持 gelf 格式的 jboss 兼容日志处理程序的 git 存储库。
https://github.com/mp911de/logstash-gelf
如何配置日志处理程序?
有关此日志处理程序的文档,请参阅以下链接。
https://logging.paluch.biz/
我如何将它集成到 thorntail 中?
为此,您必须做一些工作。
1. 将依赖项添加到您的 pom.xml
<dependency>
<groupId>biz.paluch.logging</groupId>
<artifactId>logstash-gelf</artifactId>
<version>1.12.0</version>
<scope>provided</scope>
</dependency>
2.为thorntail创建自定义module.xml
src/main/resources/modules/biz/paluch/logging/main/module.xml
<?xml version="1.0" encoding="UTF-8"?>
<module xmlns="urn:jboss:module:1.3" name="biz.paluch.logging">
<resources>
<artifact name="biz.paluch.logging:logstash-gelf:1.11.2" />
<artifact name="redis.clients:jedis:2.9.0" />
<artifact name="org.apache.commons:commons-pool2:2.4.3" />
</resources>
<dependencies>
<module name="org.apache.log4j" />
<module name="org.slf4j" />
<module name="javax.api" />
<module name="org.jboss.logmanager" />
</dependencies>
</module>
3. 配置 thorntail 以使用此日志处理程序
swarm:
jaeger:
logging:
file-handlers:
custom-handlers:
GELF-HTTP:
named-formatter: MY_LOG_PATTERN
attribute-class: biz.paluch.logging.gelf.wildfly.WildFlyGelfLogHandler
module: biz.paluch.logging
properties:
host: "http://graylog"
extractStackTrace: true
includeFullMdc: true
maximumMessageSize: 1048576
root-logger:
level: WARN
handlers:
- CONSOLE
- GELF-HTTP
如何使记录器在我的应用程序中可用?
import org.jboss.logging.Logger;
import org.slf4j.LoggerFactory;
import javax.enterprise.context.ApplicationScoped;
import javax.enterprise.context.Dependent;
import javax.enterprise.inject.Default;
import javax.enterprise.inject.Produces;
import javax.enterprise.inject.spi.InjectionPoint;
/**
* This produces and configures the logger.
*
* @author Thomas Herzog <herzog.thomas81@gmail.com>
* @since 06/08/18
*/
@ApplicationScoped
public class LoggerConfiguration {
@Produces
@Default
@Dependent
Logger createLogger(final InjectionPoint ip) {
if (ip.getBean() != null) {
return Logger.getLogger(ip.getBean().getBeanClass());
} else if (ip.getMember() != null) {
return Logger.getLogger(ip.getMember().getDeclaringClass());
} else {
return Logger.getLogger("default");
}
}
}