get_integration
Retrieve detailed configuration for a specific integration type, including connection details, settings, and status, within the Coroot observability platform.
Instructions
Get specific integration configuration details.
Retrieves the current configuration for a specific integration type, including connection details, settings, and status.
Args: project_id: The project ID integration_type: Type of integration (prometheus, cloudwatch, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
integration_type | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"integration_type": {
"title": "Integration Type",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"integration_type"
],
"type": "object"
}