-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adds support to group logs of the same http request (#257)
* feat: adds support to group logs of the same http request With TraceLoggingEventEnhancer users can set the traceId of the incoming request and then all the logs that will be created on the same thread will have the traceId property set to that traceId. This allows Cloud Logging to group log entries from the same request in the UI for easier troubleshooting * feat: adds support to group logs of the same http request With TraceLoggingEventEnhancer users can set the traceId of the incoming request and then all the logs that will be created on the same thread will have the traceId property set to that traceId. This allows Cloud Logging to group log entries from the same request in the UI for easier troubleshooting * Fix comment typo * Update src/main/java/com/google/cloud/logging/logback/TraceLoggingEventEnhancer.java Co-authored-by: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Co-authored-by: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com>
- Loading branch information
1 parent
d9856f6
commit d98051c
Showing
2 changed files
with
119 additions
and
0 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
src/main/java/com/google/cloud/logging/logback/TraceLoggingEventEnhancer.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,55 @@ | ||
/* | ||
* Copyright 2020 Google LLC | ||
* | ||
* Licensed 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. | ||
*/ | ||
|
||
package com.google.cloud.logging.logback; | ||
|
||
import ch.qos.logback.classic.spi.ILoggingEvent; | ||
import com.google.cloud.logging.LogEntry; | ||
import org.slf4j.MDC; | ||
|
||
/** Adds support for grouping logs by incoming http request */ | ||
public class TraceLoggingEventEnhancer implements LoggingEventEnhancer { | ||
|
||
// A key used by Cloud Logging for trace Id | ||
private static final String TRACE_ID = "logging.googleapis.trace"; | ||
|
||
/** | ||
* Set the Trace ID associated with any logging done by the current thread. | ||
* | ||
* @param id The traceID, in the form projects/[PROJECT_ID]/traces/[TRACE_ID] | ||
*/ | ||
public static void setCurrentTraceId(String id) { | ||
MDC.put(TRACE_ID, id); | ||
} | ||
|
||
/** | ||
* Get the Trace ID associated with any logging done by the current thread. | ||
* | ||
* @return id The traceID | ||
*/ | ||
public static String getCurrentTraceId() { | ||
return MDC.get(TRACE_ID); | ||
} | ||
|
||
@Override | ||
public void enhanceLogEntry(LogEntry.Builder builder, ILoggingEvent e) { | ||
Object value = e.getMDCPropertyMap().get(TRACE_ID); | ||
String traceId = value != null ? value.toString() : null; | ||
if (traceId != null) { | ||
builder.setTrace(traceId); | ||
} | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
src/test/java/com/google/cloud/logging/logback/TraceLoggingEventEnhancerTest.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,64 @@ | ||
/* | ||
* Copyright 2020 Google LLC | ||
* | ||
* Licensed 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. | ||
*/ | ||
|
||
package com.google.cloud.logging.logback; | ||
|
||
import static com.google.common.truth.Truth.assertThat; | ||
|
||
import ch.qos.logback.classic.spi.LoggingEvent; | ||
import com.google.cloud.logging.LogEntry; | ||
import com.google.cloud.logging.Payload.StringPayload; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
public class TraceLoggingEventEnhancerTest { | ||
private TraceLoggingEventEnhancer classUnderTest; | ||
|
||
@Before | ||
public void setUp() { | ||
classUnderTest = new TraceLoggingEventEnhancer(); | ||
} | ||
|
||
@Test | ||
public void testEnhanceLogEntry() { | ||
// setup | ||
String traceId = "abc"; | ||
TraceLoggingEventEnhancer.setCurrentTraceId(traceId); | ||
LoggingEvent loggingEvent = new LoggingEvent(); | ||
loggingEvent.setMessage("this is a test"); | ||
LogEntry.Builder builder = LogEntry.newBuilder(StringPayload.of("this is a test")); | ||
|
||
// act | ||
classUnderTest.enhanceLogEntry(builder, loggingEvent); | ||
LogEntry logEntry = builder.build(); | ||
|
||
// assert - Trace Id should be recorded as explicit Trace field, not as a label | ||
assertThat(traceId.equalsIgnoreCase(logEntry.getTrace())); | ||
} | ||
|
||
@Test | ||
public void testGetCurrentTraceId() { | ||
// setup | ||
String traceId = "abc"; | ||
TraceLoggingEventEnhancer.setCurrentTraceId(traceId); | ||
|
||
// act | ||
String currentTraceId = TraceLoggingEventEnhancer.getCurrentTraceId(); | ||
|
||
// assert | ||
assertThat(traceId.equalsIgnoreCase(currentTraceId)); | ||
} | ||
} |