Logsedit

Elastic Java APM Agent provides the following log features:

Those features are part of Application log ingestion strategies.

The ecs-logging-java library can also be used to use the ECS logging format without an APM agent. When deployed with the Java APM agent, the agent will provide log correlation IDs.

Log correlationedit

Log correlation allows you to navigate to all logs belonging to a particular trace and vice-versa: for a specific log, see in which context it has been logged and which parameters the user provided.

Starting in APM agent version 1.30.0, log correlation is enabled by default. In previous versions, log correlation must be explicitly enabled by setting the enable_log_correlation configuration variable to true.

In order to correlate logs from your application with traces and errors captured by the Elastic APM Java Agent, the agent injects the following IDs into slf4j-MDC-equivalents of supported logging frameworks:

For frameworks that don’t provide an MDC like java.util.logging (JUL), correlation is only supported when using ECS logging library or with Log reformatting.

For plain text logs, the pattern layout of your logging configuration needs to be modified to write the MDC values into log files. If you are using Logback or log4j, add %X to the format to log all MDC values or %X{trace.id} to only log the trace id.

When the application is logging in ECS format (by using ecs-logging-java or log reformatting) but does not provide the service fields, then the agent will automatically provide fallback values from its own configuration to provide service-level correlation:

Log reformatting (experimental)edit

The agent can automatically reformat application logs to ECS format, without adding a dependency to ecs-logging-java, modifying the application logging configuration and making the application always use ECS log format. In short, it provides the benefits of ECS logging at runtime without any change to the application.

Log reformatting is controlled by the log_ecs_reformatting configuration option, and is disabled by default.

The reformatted logs will include both the trace and service correlation IDs.

Error capturingedit

The agent automatically captures exceptions sent to loggers with calls like logger.error("message", exception).

When doing so, the error.id is added to the MDC as well for log correlation since 1.16.0.

As a result, when an exception is reported to the logger:

  • The agent reports an error to APM server with the provided exception
  • An error.id is generated and injected into logger MDC for the duration of the logger invocation
  • Logger output will contain the error.id if the log format allows it (plaintext still requires some configuration)

Log sending (experimental)edit

The agent can automatically capture and send logs directly to APM Server, which allows to ingest log events without relying on filebeat. Log sending is controlled by the log_sending configuration option and is disabled by default.