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

Log

Get the last log lines of the Core application.

The last log events are kept in memory and are accessible via the /api/v3/log endpoint. You can either retrieve the log lines in the format the Core is writing them to the console (?format=console) or in raw format (?format=raw). By default they are returned in "console" format.

You can define the number of last log lines kept in memory by either setting an appropriate value in the config (log.max_lines) or via an enviroment variable (CORE_LOG_MAX_LINES).

Read

Example:

curl http://127.0.0.1:8080/api/v3/log \
   -H 'accept: application/json' \
   -H 'Content-Type: application/json' \
   -X GET

Description:

Application log

get

Get the last log lines of the Restreamer application

Authorizations
AuthorizationstringRequired
Query parameters
formatstringOptional

Format of the list of log events (*console, raw)

Responses
200

application log

application/json
string[]Optional
get/api/v3/log
200

application log

Last updated

Was this helpful?