forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds minimal traceparent header support to Elasticsearch (elastic#74210)
This adds just enough support for the traceparent header to be useful in es8. Since Elasticsearch already logs in ECS format extending it with support for transaction.id and trace.id is a quick win. This allows us to surface server/deprecation slow logs from an instrumented application using the Trace Logs feature. Parsing `traceparent` in http layer and populating tasks with `trace_id` which is preserved in thread context.
- Loading branch information
Showing
9 changed files
with
174 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
server/src/main/java/org/elasticsearch/common/logging/TraceIdConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0 and the Server Side Public License, v 1; you may not use this file except | ||
* in compliance with, at your election, the Elastic License 2.0 or the Server | ||
* Side Public License, v 1. | ||
*/ | ||
|
||
package org.elasticsearch.common.logging; | ||
|
||
import org.apache.logging.log4j.core.LogEvent; | ||
import org.apache.logging.log4j.core.config.plugins.Plugin; | ||
import org.apache.logging.log4j.core.pattern.ConverterKeys; | ||
import org.apache.logging.log4j.core.pattern.LogEventPatternConverter; | ||
import org.apache.logging.log4j.core.pattern.PatternConverter; | ||
import org.elasticsearch.tasks.Task; | ||
|
||
import java.util.Objects; | ||
|
||
/** | ||
* Pattern converter to format the trace id provided in the traceparent header into JSON fields <code>trace.id</code>. | ||
*/ | ||
@Plugin(category = PatternConverter.CATEGORY, name = "TraceIdConverter") | ||
@ConverterKeys({"trace_id"}) | ||
public final class TraceIdConverter extends LogEventPatternConverter { | ||
/** | ||
* Called by log4j2 to initialize this converter. | ||
*/ | ||
public static TraceIdConverter newInstance(@SuppressWarnings("unused") final String[] options) { | ||
return new TraceIdConverter(); | ||
} | ||
|
||
public TraceIdConverter() { | ||
super("trace_id", "trace_id"); | ||
} | ||
|
||
public static String getTraceId() { | ||
return HeaderWarning.THREAD_CONTEXT.stream() | ||
.map(t -> t.<String>getHeader(Task.TRACE_ID)) | ||
.filter(Objects::nonNull) | ||
.findFirst() | ||
.orElse(null); | ||
} | ||
|
||
/** | ||
* Formats the trace.id into json fields. | ||
* | ||
* @param event - a log event is ignored in this method as it uses the clusterId value | ||
* from <code>NodeAndClusterIdStateListener</code> to format | ||
*/ | ||
@Override | ||
public void format(LogEvent event, StringBuilder toAppendTo) { | ||
String traceId = getTraceId(); | ||
if (traceId != null) { | ||
toAppendTo.append(traceId); | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters