get_deployments_overview
Track recent deployments with a detailed overview, including timeline, success/failure rates, rollback history, and performance impact. Use project ID and optional query for targeted analysis.
Instructions
Get deployment tracking overview.
Returns information about recent deployments:
Deployment timeline
Success/failure rates
Rollback history
Impact on application performance
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"
}