Logo

Command Palette

Search for a command to run...

process.down

Triggered when a monitored process stops running

This webhook is sent when a monitored process stops running. The payload includes process information and server details.

Payload Example

{
  "timestamp": 1640995200,
  "event_type": "process.down",
  "process_name": "nginx",
  "server": {
    "name": "Meerkat",
    "uid": "123123123123123123"
  }
}
Related Models:Provproc
web.process.started

Triggered when a web process starts successfully

This webhook is sent when a web process starts successfully. The payload includes stack UID and server UID where the process started.

Payload Example

{
  "timestamp": 1640995200,
  "event_type": "web.process.started",
  "stack": "abc123def456",
  "server": "123123123123123123"
}
web.process.stopped

Triggered when a web process stops

This webhook is sent when a web process stops. The payload structure is the same as web.process.started.

Payload Example

{
  "timestamp": 1640995200,
  "event_type": "web.process.stopped",
  "stack": "abc123def456",
  "server": "123123123123123123"
}
web.process.unknown

Triggered when a web process status cannot be determined

This webhook is sent when a web process status cannot be determined. The payload structure is the same as web.process.started.

Payload Example

{
  "timestamp": 1640995200,
  "event_type": "web.process.unknown",
  "stack": "abc123def456",
  "server": "123123123123123123"
}