curl --request GET \
--url https://api.tensormesh.ai/v1/observability/deployments/{deploymentId}/logs \
--header 'Authorization: Bearer <token>'{
"logs": [
{
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>"
}
]
}Retrieves logs for a specific model deployment.
curl --request GET \
--url https://api.tensormesh.ai/v1/observability/deployments/{deploymentId}/logs \
--header 'Authorization: Bearer <token>'{
"logs": [
{
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.tensormesh.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication using an access token. Format: Bearer <access_token>
Deployment ID to retrieve logs for. Must be provided.
User ID for authorization. Must be a valid UUID.
Optional start time for the logs query.
Optional end time for the logs query.
Optional limit for the logs query.
Optional direction for the logs query.
LOG_DIRECTION_UNSPECIFIED, LOG_DIRECTION_FORWARD, LOG_DIRECTION_BACKWARD A successful response.
GetModelLogsResponse contains the deployment logs.
Logs data.
Show child attributes
Was this page helpful?