get_workspace_status
Retrieve the current status of an Amazon Managed Prometheus workspace by providing its ID and AWS region. Returns status details as a JSON string for monitoring and management.
Instructions
Get the current status of an Amazon Managed Prometheus workspace.
Args: workspace_id: The ID of the workspace region: AWS region where the workspace is located (default: us-east-1)
Returns: JSON string containing workspace status information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
region | No | us-east-1 | |
workspace_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"region": {
"default": "us-east-1",
"title": "Region",
"type": "string"
},
"workspace_id": {
"title": "Workspace Id",
"type": "string"
}
},
"required": [
"workspace_id"
],
"type": "object"
}