Get Evaluation Logs
Retrieves the logs from cloudwatch for given id and returns up to 500 lines.
GET evaluation/<evaluation_id>/logs
Example
from marqtune.client import Client
url = "https://marqtune.marqo.ai"
api_key = "{api_key}"
marqtune_client = Client(url=url, api_key=api_key)
marqtune_client.evaluation("evaluation-id").logs()
curl --location 'https://marqtune.marqo.ai/evaluation/{evaluation_id}/logs' \
--header 'x-api-key: {api_key}'
Response: 200 (OK)
Logs returned.
{
"statusCode": 200,
"body": {
"logs": [
{
"timestamp": "timestamp",
"message": "message"
}
]
}
}
Response: 400 (Invalid Request)
Request path or method is invalid.
{
"statusCode": 400,
"body": {
"message": "Invalid request method"
}
}
Response: 400 (Invalid format)
Evaluation id format is not UUID
{
"statusCode": 400,
"body": {
"message": "Invalid evaluation id"
}
}
Response: 401 (Unauthorised)
Unauthorised. Check your API key and try again.
{
"message": "Unauthorized."
}
Response: 404 (Not found)
Evaluation not found
{
"statusCode": 404,
"body": {
"message": "evaluation not found"
}
}
Response: 500 (Internal server error)
Internal server error. Check your API key and try again.
{
"message": "Internal server error."
}