update_monitoring_interval
Adjust the monitoring frequency for active deployment monitors on the Optimizely DXP MCP Server. Specify the deployment ID and interval (10-600 seconds) to modify tracking updates.
Instructions
Update the monitoring frequency for active deployment monitors
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deploymentId | No | ||
interval | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deploymentId": {
"type": "string"
},
"interval": {
"maximum": 600,
"minimum": 10,
"type": "number"
}
},
"required": [
"interval"
],
"type": "object"
}