get_inspection_config
Retrieve the current inspection configuration for a specific application, including settings for CPU, memory, SLO availability, and latency, using project and application IDs.
Instructions
Get inspection configuration for an application.
Retrieves the current configuration for a specific inspection type (e.g., cpu, memory, slo_availability, slo_latency) for an application.
Args: project_id: Project ID app_id: Application ID (format: namespace/kind/name) inspection_type: Type of inspection (cpu, memory, slo, etc)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_id | Yes | ||
inspection_type | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"title": "App Id",
"type": "string"
},
"inspection_type": {
"title": "Inspection Type",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"app_id",
"inspection_type"
],
"type": "object"
}