get-logs
Retrieve Cloud Logging entries for your GCP project using customizable filters and pagination. Simplify log analysis by fetching specific logs with a structured query.
Instructions
Get Cloud Logging entries for the current project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter | No | Filter for the log entries (see Cloud Logging query syntax) | |
pageSize | No | Maximum number of entries to return (default: 10) |
Input Schema (JSON Schema)
{
"properties": {
"filter": {
"description": "Filter for the log entries (see Cloud Logging query syntax)",
"type": "string"
},
"pageSize": {
"description": "Maximum number of entries to return (default: 10)",
"type": "number"
}
},
"required": [],
"type": "object"
}