GetSecurityMonitoringRule
Retrieve detailed information about a specific security monitoring rule by its ID using Datadog MCP Server. Supports JSON responses for success, not found, and rate limit errors.
Instructions
Get a rule's details.
Path Parameters:
rule_id (Required): The ID of the rule.
Responses:
200 (Success): OK
Content-Type:
application/json
404: Not Found
Content-Type:
application/json
Response Properties:
errors: A list of errors.
Example:
{
"errors": [
"Bad Request"
]
}
429: Too many requests
Content-Type:
application/json
Response Properties:
errors: A list of errors.
Example:
{
"errors": [
"Bad Request"
]
}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rule_id | Yes | The ID of the rule. |
Input Schema (JSON Schema)
{
"properties": {
"rule_id": {
"description": "The ID of the rule.",
"type": "string"
}
},
"required": [
"rule_id"
],
"type": "object"
}