- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一整天都在做这个,但在尝试了这么多组合之后还是没能正常工作。归根结底,我正在寻找从 Karaf 获取 JSON 日志记录的明确步骤列表。我什至浏览了 Maven Karaf 插件源代码,试图解决这个问题,尽管我可能看得不够远。
我正在使用 Karaf 4.2.6。我正在尝试使用版本 4.2.6 的 karaf-maven-plugin 构建 Karaf 部署。
如果我将各种 appender 的 layout.type
更改为 JsonLayout
,我会得到一个堆栈跟踪,说它无法加载 JSON 布局,因为我缺少一个类。 java.lang.NoClassDefFoundError: com/fasterxml/jackson/databind/ser/FilterProvider
.
我查看了 jar org.ops4j.pax.logging/pax-logging-log4j2/1.10.2
,发现我需要 3 个 Jackson jar,Core v2.8.7,Annotations v2.8.0,和数据绑定(bind) v2.8.7。
我一直试图在 etc/startup.properties
中获取这些文件,起始级别为 5 或起始级别为 8,以便它们为 org.ops4j 做好准备。 pax.logging/pax-logging-log4j2/1.10.2
启动时。我确保它们位于正确位置的 system
文件夹中。大多数时候,如果我确实将它们放入 etc/startup.properties
,它们的起始级别为 30。我将它们放在具有正确起始级别的功能中,但它们要么启动良好在使用 startup.properties
或从未出现过之后。我尝试了很多可能的组合,startupBundles
、startupFeatures
、bootFeatures
,但在 startup.properties
中什么也没有。我不知道 startup.properties
的内容是如何生成的。有时,我想要的应用程序功能甚至无法启动,因为如果我只是将对这些 jar 的引用放在 startup.properties
中,则有关配置的某些内容在设置日志记录时被阻止,例如
mvn\:com.fasterxml.jackson.core/jackson-core/2.8.7 = 5
下面是我的 pom.xml,其中注释掉了之前尝试的一些内容:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<properties>
<my_version>0.0.0</my_version>
<myapp_common_version>0.0.0</myapp_common_version>
</properties>
<groupId>com.me.myapp</groupId>
<artifactId>myapp-karaf</artifactId>
<version>${my_version}</version>
<packaging>karaf-assembly</packaging>
<name>myapp-karaf</name>
<description>myapp-karaf details</description>
<repositories>
<!-- Apache ServiceMix repository (for region) -->
<repository>
<id>apache.servicemix.m2</id>
<name>Apache ServiceMix M2 repository</name>
<url>http://svn.apache.org/repos/asf/servicemix/m2-repo</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<!-- OPS4J SNAPSHOT repository -->
<repository>
<id>ops4j.sonatype.snapshots.deploy</id>
<name>OPS4J snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/ops4j-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<!-- Apache SNAPSHOT -->
<repository>
<id>apache.snapshots.deploy</id>
<name>Apache snapshot repository</name>
<url>https://repository.apache.org/content/groups/snapshots-group</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>framework</artifactId>
<version>4.2.6</version>
<type>kar</type>
</dependency>
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>standard</artifactId>
<version>4.2.6</version>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>spring</artifactId>
<version>4.2.6</version>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.karaf.features</groupId>
<artifactId>enterprise</artifactId>
<version>4.2.6</version>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.me.myapp</groupId>
<artifactId>myapp-common-feature</artifactId>
<version>${myapp_common_version}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.me.myapp</groupId>
<artifactId>myapp-feature</artifactId>
<!-- Annoyingly this cannot come from an environment variable -->
<version>${my_version}</version>
<classifier>features</classifier>
<type>xml</type>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${env.MYAPP_SOURCE_HOME}/myapp-common/server/karaf/assembly</directory>
<filtering>false</filtering>
<includes>
<include>**/*</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<includes>
<include>**/*</include>
</includes>
</resource>
<resource>
<directory>src/main/filtered-resources</directory>
<filtering>true</filtering>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>4.2.6</version>
<extensions>true</extensions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>process-resources</id>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<configuration>
<startupBundles> <!--
<bundle>mvn:com.fasterxml.jackson.core/jackson-annotations/2.8.0</bundle>
<bundle>mvn:com.fasterxml.jackson.core/jackson-core/2.8.7</bundle>
<bundle>mvn:com.fasterxml.jackson.core/jackson-databind/2.8.7</bundle> -->
</startupBundles>
<installedFeatures>
</installedFeatures>
<startupFeatures>
<feature>com.me.myapp/${my_version}</feature>
</startupFeatures>
<bootFeatures>
<feature>com.me.myapp.logging.provider/${myapp_common_version}</feature>
<!-- standard distribution -->
<!-- <feature>standard</feature> -->
<!-- minimal distribution -->
<!--<feature>minimal</feature>-->
<feature>jaas</feature>
<feature>shell</feature>
<feature>ssh</feature>
<feature>management</feature>
<feature>bundle</feature>
<feature>config</feature>
<feature>deployer</feature>
<feature>diagnostic</feature>
<feature>instance</feature>
<feature>kar</feature>
<feature>wrap</feature>
<feature>log</feature>
<feature>package</feature>
<feature>service</feature>
<feature>system</feature>
</bootFeatures>
<javase>1.8</javase>
</configuration>
</plugin>
</plugins>
</build>
</project>
com.me.myapp.logging.provider
包含具有适当启动级别的 Jackson jar 。
我在 Kubernetes 中运行我的容器,并希望 Kubernetes 中的标准日志收集能够正常工作。我在日志收集器上使用一个额外的插件来至少将一些东西分离成 JSON 格式,但它很容易出错,我宁愿只从 JSON 格式的日志开始,而不是稍后在下游处理,这样我就可以分离组件日志,例如执行操作的人,在日志记录时。
我在 Stack Overflow 上进行了搜索,在 Google 上进行了搜索,并找到了提示,但没有找到解决方案的明确步骤。我知道这里没有明确的文件列表,但是,正如我所说,我经历了很多组合。任何帮助将非常感激。我还将在 Karaf 用户组上发帖。
最佳答案
好的,几天后,我想出了所有需要做的事情。感谢@GrzegorzGrzybek 的帮助。
我需要以下几行
mvn\:org.ops4j.pax.logging/pax-logging-log4j2-extra/1.11.4 = 8
mvn\:com.fasterxml.jackson.core/jackson-core/2.9.10 = 8
mvn\:com.fasterxml.jackson.core/jackson-annotations/2.9.10 = 8
mvn\:com.fasterxml.jackson.core/jackson-databind/2.9.10 = 8
添加到我的 etc/startup.properties
.如果我只是编辑文件以添加它们,并确保我在 system
中有这些文件存储库,它不会工作。不知道,在 etc
的其他地方没有输入一些条目配置,因此容器无法启动,或者某些功能集在 wrap
之前启动处理程序已安装,因此整个容器将停止运行。
我尝试了很多组合,但最终找到了如何将东西放入 etc/startup.properties
中.我将我想要的 bundle 放入它们自己的功能中,并具有我希望它们拥有的起始级别。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<features xmlns="http://karaf.apache.org/xmlns/features/v1.3.0" name="myapp-common-container-feature">
<feature name="com.me.myapp.logging.provider" version="0.12.0" description="MyApp Logging Provider">
<bundle start-level="8">mvn:com.fasterxml.jackson.core/jackson-annotations/2.9.10</bundle>
<bundle start-level="8">mvn:com.fasterxml.jackson.core/jackson-core/2.9.10</bundle>
<bundle start-level="8">mvn:com.fasterxml.jackson.core/jackson-databind/2.9.10</bundle>
<bundle start-level="8">mvn:org.ops4j.pax.logging/pax-logging-log4j2-extra/1.11.4</bundle>
</feature>
</features>
注意 start-level
属性。
然后,在我的程序集 POM 中,我放置了以下依赖项:
<dependency>
<groupId>com.me.myapp</groupId>
<artifactId>myapp-common-container-feature</artifactId>
<version>0.12.0</version>
<classifier>features</classifier>
<type>xml</type>
<scope>compile</scope>
</dependency>
这里重要的一行是<scope>compile</scope>
. compile
中的功能范围将放在 startup.properties
中如果放在 <startupFeatures />
在 Karaf Maven 插件的配置中。
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<configuration>
<startupFeatures>
<feature>com.me.myapp.logging.provider/0.12.0</feature>
</startupFeatures>
现在容器以 JSON 日志记录启动。
关于json - 无法让 Karaf 4.2.6 使用带有 JsonLayout 的 log4j2 记录布局类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61493642/
我正在尝试通过 log4j2 以 JSON 格式登录。 这是我的 log4j2.xml 文件:
如何在 Log4j2 的 JSONLAYOUT 中添加自定义参数? 还有没有办法向 JSONLAYOUT 的消息元素添加模式? 我已经尝试了这里列出的选项 -> logging.apache.org/
我正在使用 JsonLayout 和 Spring Boot 以 JSON 格式记录消息。我只希望将日志消息记录到控制台而不是日志文件。 我注意到 JSON 日志连续记录在同一行上。在生产中,这没问题
我尝试配置我的 log4j2 但我总是收到此错误: 2017-11-06 01:14:15,454 RMI TCP Connection(3)-127.0.0.1 ERROR appender Rol
显然,JSONLayout在 log4j2 中没有时间戳模式支持。通常它只有 JSON 格式选项,但没有 pattern 选项。 { "configuration": { "name":
我将用 JSONLayout 显示 log4j2与消息上的对象相同。例如我的配置是: cat log4j2.xml
嘿,我有一个使用 log4j 和 slf4j 进行日志记录的项目。 我将日志的布局配置为JsonLayout。 是否可以在保持 json 格式的同时记录 JSON 对象。 例如 : JsonO
我正在尝试使用 Log4J (2.6.2) 将日志存储在 JSON 文件中。我在 RollingFileAppender 中使用 JsonLayout,只要我不尝试附加到之前已写入的文件,它就可以正常
我正在尝试以 JSON 格式重定向日志输出,因此,我有 log4j2 的 Json 配置。我知道我应该使用 JsonLayout,但我没有找到任何方法将其放在我的配置中。这是我的 log4j2.jso
因此,我们有一个应用程序,我们将把它的所有日志发送到 Kibana 服务器(通过 Kafka 服务器)。 以下是我们设法开始工作的基础知识,可以毫无问题地发布到 Kibana:
我正在尝试使用 Log4j2 配置 JsonLayaout。我想在 JSON 中的一条消息中包含堆栈跟踪。我知道我必须使用属性“完整”。 我创建的示例类是: public class MyApp {
如何在log4j2的JsonLayout生成的json日志中添加MDC变量。我已经使用 KeyValuePair 标记将主机名等属性添加到日志中,但我没有找到任何方法将 MDC 变量添加到其中。在模式
长话短说如果我在 log4j2.xml 配置中使用带有嵌套 KeyValuePair 的 JsonLayout,则生成的日志消息为空。有什么想法吗? 说来话长 我将 Tomcat 8.5.43 与以下
Log4j2 的 JsonLayout将 LogEvent 内容转换为 JSON,如下所示: java : logger.info("This is an info message"); 输出:
我一整天都在做这个,但在尝试了这么多组合之后还是没能正常工作。归根结底,我正在寻找从 Karaf 获取 JSON 日志记录的明确步骤列表。我什至浏览了 Maven Karaf 插件源代码,试图解决这个
我是一名优秀的程序员,十分优秀!