Logging configuration options
editLogging configuration options
editlog_level
editSets the logging level for the agent. This option is case-insensitive.
CRITICAL
is a valid option, but it is mapped to ERROR
; WARN
and WARNING
are equivalent;
OFF
is only available since version 1.16.0
Valid options: OFF
, ERROR
, CRITICAL
, WARN
, WARNING
, INFO
, DEBUG
, TRACE
Default | Type | Dynamic |
---|---|---|
|
LogLevel |
true |
Java System Properties | Property file | Environment |
---|---|---|
|
|
|
log_file
editSets the path of the agent logs.
The special value _AGENT_HOME_
is a placeholder for the folder the elastic-apm-agent.jar is in.
Example: _AGENT_HOME_/logs/elastic-apm.log
When set to the special value System.out, the logs are sent to standard out.
When logging to a file, the log will be formatted in new-line-delimited jsON. When logging to std out, the log will be formatted as plain-text.
Default | Type | Dynamic |
---|---|---|
|
String |
false |
Java System Properties | Property file | Environment |
---|---|---|
|
|
|
log_ecs_reformatting
(
[1.22.0]
Added in 1.22.0.
experimental)
editThis feature is currently experimental, which means it is disabled by default and it is not guaranteed to be backwards compatible in future releases.
Specifying whether and how the agent should automatically reformat application logs
into ECS-compatible jsON, suitable for ingestion into Elasticsearch for
further Log analysis. This functionality is available for log4j1, log4j2, Logback and java.util.logging
.
The ECS log lines will include active trace/transaction/error IDs, if there are such.
This option only applies to pattern layouts/formatters by default.
See also log_ecs_formatter_allow_list
.
To properly ingest and parse ECS jsON logs, follow the getting started guide.
Available options:
- OFF - application logs are not reformatted.
-
SHADE - agent logs are reformatted and "shade" ECS-jsON-formatted logs are automatically created in
addition to the original application logs. Shade logs will have the same name as the original logs,
but with the ".ecs.json" extension instead of the original extension. Destination directory for the
shade logs can be configured through the
log_ecs_reformatting_dir
configuration. Shade logs do not inherit file-rollover strategy from the original logs. Instead, they use their own size-based rollover strategy according to thelog_file_size
configuration and while allowing maximum of two shade log files. -
REPLACE - similar to
SHADE
, but the original logs will not be written. This option is useful if you wish to maintain similar logging-related overhead, but write logs to a different location and/or with a different file extension. - OVERRIDE - same log output is used, but in ECS-compatible jsON format instead of the original format.
while SHADE
and REPLACE
options are only relevant to file log appenders, the OVERRIDE
option
is also valid for other appenders, like System out and console.
Valid options: OFF
, SHADE
, REPLACE
, OVERRIDE
Default | Type | Dynamic |
---|---|---|
|
LogEcsReformatting |
true |
Java System Properties | Property file | Environment |
---|---|---|
|
|
|
log_ecs_reformatting_additional_fields
(
[1.26.0]
Added in 1.26.0.
)
editA comma-separated list of key-value pairs that will be added as additional fields to all log events.
Takes the format key=value[,key=value[,...]]
, for example: key1=value1,key2=value2
.
Only relevant if log_ecs_reformatting
is set to any option other than OFF
.
Additional fields are currently not supported for direct log sending through the agent.
Default | Type | Dynamic |
---|---|---|
|
Map |
false |
Java System Properties | Property file | Environment |
---|---|---|
|
|
|
log_ecs_formatter_allow_list
editOnly formatters that match an item on this list will be automatically reformatted to ECS when
log_ecs_reformatting
is set to any option other than OFF
.
A formatter is the logging-framework-specific entity that is responsible for the formatting
of log events. For example, in log4j it would be a Layout
implementation, whereas in Logback it would
be an Encoder
implementation.
This option supports the wildcard *
, which matches zero or more characters.
Examples: /foo/*/bar/*/baz*
, *foo*
.
Matching is case insensitive by default.
Prepending an element with (?-i)
makes the matching case sensitive.
Default | Type | Dynamic |
---|---|---|
|
List |
false |
Java System Properties | Property file | Environment |
---|---|---|
|
|
|
log_ecs_reformatting_dir
editIf log_ecs_reformatting
is set to SHADE
or REPLACE
,
the shade log files will be written alongside the original logs in the same directory by default.
Use this configuration in order to write the shade logs into an alternative destination. Omitting this
config or setting it to an empty string will restore the default behavior. If relative path is used,
this path will be used relative to the original logs directory.
Default | Type | Dynamic |
---|---|---|
|
String |
false |
Java System Properties | Property file | Environment |
---|---|---|
|
|
|
log_file_size
(
[1.17.0]
Added in 1.17.0.
)
editThe size of the log file.
The agent always keeps one history file so that the max total log file size is twice the value of this setting.
Default | Type | Dynamic |
---|---|---|
|
ByteValue |
false |
Java System Properties | Property file | Environment |
---|---|---|
|
|
|
log_format_sout
(
[1.17.0]
Added in 1.17.0.
)
editDefines the log format when logging to System.out
.
When set to jsON
, the agent will format the logs in an ECS-compliant jsON format
where each log event is serialized as a single line.
Valid options: PLAIN_TEXT
, jsON
Default | Type | Dynamic |
---|---|---|
|
LogFormat |
false |
Java System Properties | Property file | Environment |
---|---|---|
|
|
|
log_format_file
(
[1.17.0]
Added in 1.17.0.
)
editDefines the log format when logging to a file.
When set to jsON
, the agent will format the logs in an ECS-compliant jsON format
where each log event is serialized as a single line.
Valid options: PLAIN_TEXT
, jsON
Default | Type | Dynamic |
---|---|---|
|
LogFormat |
false |
Java System Properties | Property file | Environment |
---|---|---|
|
|
|
log_sending
(
[1.36.0]
Added in 1.36.0.
experimental)
editThis feature is currently experimental, which means it is disabled by default and it is not guaranteed to be backwards compatible in future releases.
Sends agent and application logs directly to APM Server.
Note that logs can get lost if the agent can’t keep up with the logs, if APM Server is not available, or if Elasticsearch can’t index the logs fast enough.
For better delivery guarantees, it’s recommended to ship ECS jsON log files with Filebeat
See also log_ecs_reformatting
.
Log sending does not currently support custom MDC fields, log_ecs_reformatting
and shipping the logs with Filebeat must be used if custom MDC fields are required.
Default | Type | Dynamic |
---|---|---|
|
Boolean |
true |
Java System Properties | Property file | Environment |
---|---|---|
|
|
|