default
profile or role.
registryName
to the schemaRegistry
section.
Environment variable | Default value | |
---|---|---|
CDK_ROOT_LOG_LEVEL | INFO | Global Console log level, one of OFF , ERROR , WARN , INFO , DEBUG |
CDK_ROOT_LOG_FORMAT | TEXT | Log format, one of TEXT or JSON (sice 1.26.0) |
CDK_ROOT_LOG_COLOR | true | Enable color in logs when possible |
CDK_DEBUG: true
is still supported and is equivalent to CDK_ROOT_LOG_LEVEL: DEBUG
.OFF
, ERROR
, WARN
, INFO
, DEBUG
, and TRACE
.Environment variable | Default value | Description | |
---|---|---|---|
PLATFORM_STARTUP_LOG_LEVEL | INFO | Set the setup/configuration process logs level. By default, it is set to INFO , but switches to DEBUG if CDK_ROOT_LOG_LEVEL: DEBUG . | |
CONSOLE_ROOT_LOG_LEVEL | CDK_ROOT_LOG_LEVEL | Logs related to any actions done in the Console UI | |
PLATFORM_API_ROOT_LOG_LEVEL | CDK_ROOT_LOG_LEVEL | Internal platform API logs (health endpoints) |
CDK_ROOT_LOG_LEVEL
.For instance, if you only setCONSOLE_ROOT_LOG_LEVEL
will be automatically set to DEBUG
.Similarly, if you set:CONSOLE_ROOT_LOG_LEVEL
will still be set to DEBUG
, and isn’t overridden.CONSOLE_ROOT_LOG_LEVEL=JSON
. The logs will be structured using following format:
timestamp
is encoded in ISO-8601 format. When structured logging is enabled, CDK_ROOT_LOG_COLOR
is always ignored./api/public/debug/v1/loggers
.
GET /api/public/debug/v1/loggers
:
GET /api/public/debug/v1/loggers/{loggerName}
:
loggerName
filter uses a contains so you can either use the fully qualified cardinal name or just a part of it, meaning that the filter authenticator
will match io.conduktor.authenticator
and io.conduktor.authenticator.ConduktorUserProfile
loggers.PUT /api/public/debug/v1/loggers/{loggerName}/{logLevel}
:
GET
endpoint, the loggerName
filter use a contains so you can either use the fully qualified cardinal name or just a part of it. The logLevel
is case-insensitive and can be: TRACE
, DEBUG
, INFO
, WARN
, ERROR
, OFF
.PUT /api/public/debug/v1/loggers
: