如何启用野蝇群日志记录到greylog-或者换句话说:以gelf格式进行日志记录?有人已经这样做了吗?
似乎在graylog市场上只有与log4j(gelfj(或logback一起工作的框架,而不是与jboss日志记录系统一起工作。从关于 SO 的其他问题来看,我假设不可能将 thorntail 配置为使用 log4j 进行日志记录(无论如何这感觉有些错误:通过 jboss 登录到 log4j 的管道日志记录将其漏斗到 gelf 中......
基本要求是我想对我的 swarm 应用程序进行坞站并使用 greylog 作为集中式日志记录。我知道我可以配置 docker 以登录 gelf,但这意味着我无法控制应用程序中的扩展 gelf 函数,对吧?
从刺尾/蜂群实现集中式日志记录的首选方法是什么?
是的,可以将日志发送到 thorntail 中的 graylog,因为有些人已经为我们实现了与 jboss 兼容的 gelf 日志处理程序。一些限制是您使用的日志记录框架。我不得不通过slf4j使用jboss记录器,并没有花更多的时间来运行log4j。也许您知道如何实现这一点。
我在哪里可以获得 gelf 的 jboss 兼容日志处理程序?
在这里,您可以找到支持 gelf 格式的 jboss 兼容日志处理程序的 git 存储库。
https://github.com/mp911de/logstash-gelf
如何配置日志处理程序?
有关此日志处理程序的文档,请参阅以下链接。
https://logging.paluch.biz/
如何将其集成到刺尾中?
为此,您必须做一些工作。
1. 将依赖项添加到您的 pom 中.xml
<dependency>
<groupId>biz.paluch.logging</groupId>
<artifactId>logstash-gelf</artifactId>
<version>1.12.0</version>
<scope>provided</scope>
</dependency>
2. 为刺尾创建一个自定义模块.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. 配置刺尾以使用此日志处理程序
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");
}
}
}