mcp-server-datadog

by winor30
Verified

mute_host

Mute a host in Datadog

Input Schema

NameRequiredDescriptionDefault
endNoPOSIX timestamp for when the mute should end
hostnameYesThe name of the host to mute
messageNoMessage to associate with the muting of this host
overrideNoIf true and the host is already muted, replaces existing end time

Input Schema (JSON Schema)

{ "properties": { "end": { "description": "POSIX timestamp for when the mute should end", "type": "integer" }, "hostname": { "description": "The name of the host to mute", "type": "string" }, "message": { "description": "Message to associate with the muting of this host", "type": "string" }, "override": { "default": false, "description": "If true and the host is already muted, replaces existing end time", "type": "boolean" } }, "required": [ "hostname" ], "type": "object" }