nself webhooks
هذا المحتوى غير متوفر بلغتك بعد.
nself webhooks
Section titled “nself webhooks”Manage webhook processing and outbox.
Synopsis
Section titled “Synopsis”nself webhooks <subcommand> [flags]Description
Section titled “Description”nself webhooks manages the durable outbox queue used by the webhook subsystem. When a webhook event cannot be written to Postgres at receipt time (transient DB outage, network blip), the event is appended to a durable on-disk outbox at /var/lib/nself/webhook-outbox/ (or the path in NSELF_WEBHOOK_OUTBOX_DIR) so it can be retried later.
webhooks outbox status reports the outbox directory, current depth (number of queued events), and the file names of pending events. Output can be table (default) or JSON for machine consumers.
This command is read-only today; processing of queued events is performed by the webhook worker on a schedule, not by the CLI.
Subcommands
Section titled “Subcommands”| Name | Description |
|---|---|
outbox status | Show current outbox status |
webhooks outbox status
Section titled “webhooks outbox status”| Flag | Default | Description |
|---|---|---|
--format, -f | text | Output format: text or json |
Examples
Section titled “Examples”# Show outbox depth and queued event filenamesnself webhooks outbox status
# JSON form for a metrics pipelinenself webhooks outbox status --format jsonSee Also
Section titled “See Also”- cmd-queue: async job queues
- cmd-watchdog: self-healing watchdog
- cmd-status: service health
- Commands: full command index