Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions jul-ecs-formatter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,17 @@
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.30</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
public class EcsFormatter extends Formatter {

private static final String UNKNOWN_FILE = "<Unknown>";
private static final MdcSupplier mdcSupplier = MdcSupplier.Resolver.INSTANCE.resolve();

private boolean stackTraceAsArray;
private String serviceName;
Expand All @@ -57,6 +58,7 @@ public String format(final LogRecord record) {
EcsJsonSerializer.serializeObjectStart(builder, record.getMillis());
EcsJsonSerializer.serializeLogLevel(builder, record.getLevel().getName());
EcsJsonSerializer.serializeFormattedMessage(builder, super.formatMessage(record));
EcsJsonSerializer.serializeMDC(builder, mdcSupplier.getMDC());
EcsJsonSerializer.serializeServiceName(builder, serviceName);
EcsJsonSerializer.serializeEventDataset(builder, eventDataset);
EcsJsonSerializer.serializeThreadId(builder, record.getThreadID());
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/*-
* #%L
* Java ECS logging
* %%
* Copyright (C) 2019 - 2020 Elastic and contributors
* %%
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
* #L%
*/
package co.elastic.logging.jul;

import org.slf4j.MDC;

import java.util.Collections;
import java.util.Map;

public interface MdcSupplier {
Map<String, String> getMDC();

enum Resolver {
INSTANCE;

MdcSupplier resolve() {
try {
Class.forName("org.slf4j.MDC");

// The SLF4J API dependency does not contain an MDC binder by itself, the MDC binders come from an SLF4j
// implementation. When no MDC bindings are available calls to MDC.put will be ignored by slf4j.
// That is why we want to ensure that the StaticMDCBinder exists
Class.forName("org.slf4j.impl.StaticMDCBinder");
return (MdcSupplier) Class.forName("co.elastic.logging.jul.MdcSupplier$Available").getEnumConstants()[0];
} catch (Exception e) {
return Unavailable.INSTANCE;
} catch (LinkageError e ) {
return Unavailable.INSTANCE;
}
}
}

enum Available implements MdcSupplier {
INSTANCE;

@Override
public Map<String, String> getMDC() {
Map<String, String> copyOfContextMap = MDC.getCopyOfContextMap();
if (copyOfContextMap != null ) {
return copyOfContextMap;
}
return Collections.emptyMap();
}
}

enum Unavailable implements MdcSupplier {
INSTANCE;

Unavailable() {
}

@Override
public Map<String, String> getMDC() {
return Collections.emptyMap();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@
import com.fasterxml.jackson.databind.JsonNode;

import co.elastic.logging.AbstractEcsLoggingTest;
import org.slf4j.MDC;

public class JulLoggingTestTest extends AbstractEcsLoggingTest {
public class JulLoggingTest extends AbstractEcsLoggingTest {

private static final class InMemoryStreamHandler extends StreamHandler {
private InMemoryStreamHandler(OutputStream out, Formatter formatter) {
Expand Down Expand Up @@ -86,6 +87,12 @@ public void debug(String message) {
logger.log(Level.FINE, message);
}

@Override
public boolean putMdc(String key, String value) {
MDC.put(key, value);
return true;
}

@Override
public ParameterizedLogSupport getParameterizedLogSettings() {
return ParameterizedLogSupport.NUMBER_AND_BRACKETS;
Expand Down Expand Up @@ -131,7 +138,7 @@ void testLogException() throws Exception {
String stackTrace = StreamSupport.stream(getLastLogLine().get("error.stack_trace").spliterator(), false)
.map(JsonNode::textValue)
.collect(Collectors.joining("\n", "", "\n"));
assertThat(stackTrace).contains("at co.elastic.logging.jul.JulLoggingTestTest.testLogException");
assertThat(stackTrace).contains("at co.elastic.logging.jul.JulLoggingTest.testLogException");
}

@Test
Expand Down