get_applications_overview
Obtain a high-level summary of all applications within a project, including health status, performance metrics, resource usage, and recent incidents, for efficient monitoring and analysis.
Instructions
Get overview of all applications in a project.
Returns a high-level view of all applications including:
Application health status
Key performance indicators
Resource usage
Recent incidents
Args: project_id: Project ID query: Search/filter query (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ||
query | No |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Query"
}
},
"required": [
"project_id"
],
"type": "object"
}