For the complete documentation index, see llms.txt. This page is also available as Markdown.

Administration

List all loggers

get

Returns all registered loggers with their explicit and effective levels, plus the current mode (file|runtime).

Authorizations
AuthorizationstringRequired

The bearer token can be obtained by creating a ServiceAccount.

Path parameters
environmentstringRequired
Responses
200Success
application/json
modestringRequired
activePresetstringOptional
get
/api/v1/environments/{environment}/proxy/api/v1/admin/loggers

Set a logger's level

put

Sets the log level for a specific logger. This enters runtime mode, disabling auto-reload from the config file until a preset is applied.

Authorizations
AuthorizationstringRequired

The bearer token can be obtained by creating a ServiceAccount.

Path parameters
environmentstringRequired
Body
loggerNamestringRequired
levelstring · enumRequiredPossible values:
Responses
200Success
application/json
loggerNamestringRequired
previousLevelstringOptional
newLevelstringRequired
put
/api/v1/environments/{environment}/proxy/api/v1/admin/loggers

Get a specific logger

get

Returns information about a specific logger by name

Authorizations
AuthorizationstringRequired

The bearer token can be obtained by creating a ServiceAccount.

Path parameters
environmentstringRequired
namestringRequired

The logger name (e.g., 'io.lenses.http' or 'ROOT')

Responses
200Success
application/json
namestringRequired
levelstringOptional
effectiveLevelstringRequired
get
/api/v1/environments/{environment}/proxy/api/v1/admin/loggers/{name}

List available log presets

get

Returns the list of available log configuration presets

Authorizations
AuthorizationstringRequired

The bearer token can be obtained by creating a ServiceAccount.

Path parameters
environmentstringRequired
Responses
200Success
application/json
activePresetstringOptional
get
/api/v1/environments/{environment}/proxy/api/v1/admin/loggers/presets

Apply a log preset

put

Applies a log configuration preset, reloading the corresponding XML config file. Returns to file mode, re-enabling auto-reload.

Authorizations
AuthorizationstringRequired

The bearer token can be obtained by creating a ServiceAccount.

Path parameters
environmentstringRequired
namestringRequired

The preset name (default, debug, or debug-kafka)

Responses
200Success
application/json
presetstringRequired
previousPresetstringOptional
loggersResetintegerRequired
put
/api/v1/environments/{environment}/proxy/api/v1/admin/loggers/presets/{name}

Get logging status

get

Returns the current logging mode, active preset, and auto-reload state

Authorizations
AuthorizationstringRequired

The bearer token can be obtained by creating a ServiceAccount.

Path parameters
environmentstringRequired
Responses
200Success
application/json
modestringRequired
activePresetstringOptional
configFilestringRequired
autoReloadEnabledbooleanRequired
lastModifiedinteger · int64Optional
get
/api/v1/environments/{environment}/proxy/api/v1/admin/loggers/status

Last updated

Was this helpful?