get_service_log
Retrieve logs and error messages for a specific Cloud Run service by providing the Google Cloud project ID, region, and service name.
Instructions
Gets Logs and Error Messages for a specific Cloud Run service.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | Yes | Google Cloud project ID containing the service | |
region | No | Region where the service is located | europe-west1 |
service | Yes | Name of the Cloud Run service |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project": {
"description": "Google Cloud project ID containing the service",
"type": "string"
},
"region": {
"default": "europe-west1",
"description": "Region where the service is located",
"type": "string"
},
"service": {
"description": "Name of the Cloud Run service",
"type": "string"
}
},
"required": [
"project",
"service"
],
"type": "object"
}