mcp-server-datadog

by winor30
Verified

get_logs

Search and retrieve logs from Datadog

Input Schema

NameRequiredDescriptionDefault
fromYesStart time in epoch seconds
limitNoMaximum number of logs to return. Default is 100.
queryNoDatadog logs query string
toYesEnd time in epoch seconds

Input Schema (JSON Schema)

{ "properties": { "from": { "description": "Start time in epoch seconds", "type": "number" }, "limit": { "default": 100, "description": "Maximum number of logs to return. Default is 100.", "type": "number" }, "query": { "default": "", "description": "Datadog logs query string", "type": "string" }, "to": { "description": "End time in epoch seconds", "type": "number" } }, "required": [ "from", "to" ], "type": "object" }