get_application_logs
Retrieve application logs by UUID to debug errors, monitor performance, and troubleshoot deployment issues in Coolify applications.
Instructions
Get application logs by UUID. Essential for debugging and monitoring application behavior, errors, and performance issues. Retrieve logs from running applications to troubleshoot deployment issues and monitor application health.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lines | No | Number of lines to show from the end of the logs. Controls log volume for performance. Default is 100 lines. | |
uuid | Yes | UUID of the application to retrieve logs for. Get this from list_applications. |
Input Schema (JSON Schema)
{
"properties": {
"lines": {
"default": 100,
"description": "Number of lines to show from the end of the logs. Controls log volume for performance. Default is 100 lines.",
"examples": [
100,
500,
1000
],
"minimum": 1,
"type": "number"
},
"uuid": {
"description": "UUID of the application to retrieve logs for. Get this from list_applications.",
"examples": [
"sg4gsws44wksg040o4ok80ww"
],
"pattern": "^[a-zA-Z0-9]+$",
"type": "string"
}
},
"required": [
"uuid"
],
"type": "object"
}