LogicMonitor

nocrash_list_events

List event history across your watched items — filter by watch, by event type, or pass `event_id` to fetch a single event in full detail. Event types span the full range NoCrash watches for: routine check-ins, failures, recoveries, missed runs, silent step-level breakage, workflow on/off changes upstream, and browser-side errors from vibe-coded apps (script crashes, unhandled promise rejections, failed network calls, page loads).

Remote nocrash/monitor

Remote (network-hosted)

Other tools also called nocrash_list_events? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "description": "Max events to return (1-100, default 50)."
    },
    "since": {
      "type": "string",
      "description": "ISO8601 datetime — only return events after this time. Default: last 24 hours."
    },
    "event_id": {
      "type": "integer",
      "description": "Get a single event by ID for full details. Overrides other filters."
    },
    "watch_id": {
      "type": "string",
      "description": "Filter events for a specific watched item (e.g., mon_a1b2c3d4e5f6). Omit for all watches."
    },
    "event_type": {
      "enum": [
        "ping",
        "fail",
        "error",
        "recovery",
        "missed_run",
        "workflow_disabled",
        "workflow_reactivated",
        "js_error",
        "js_unhandled_rejection",
        "js_fetch_fail",
        "page_load",
        "silent_error"
      ],
      "type": "string",
      "description": "Filter by event type. ping = healthy check-in; fail/error = the workflow broke; recovery = it's running again; missed_run = an expected run didn't happen; silent_error = the workflow finished but a step quietly broke; workflow_disabled/workflow_reactivated = the workflow was turned off or back on in the provider; js_error/js_unhandled_rejection = a script crashed in a user's browser; js_fetch_fail = a network call from the browser failed; page_load = someone loaded a page (informational)."
    }
  }
}