Operational

DocsGithub Open app

Operational

Github Articles Pitch Usecases Playground API

Contents

Start hereSetup Operational
Guided setup
IntroductionCreate project and API keyManage projects and teammatesSend your first eventStructured eventsAdd actionsGroup events with contextsCategories and searchView events in your projectSetup PWA on phoneLog limits and errors
The Manual
IntroductionPWA & push notificationsConventionsSetupTest modeNotifications
Integrations
Nodejs SDKPHP SDKWordpress plugin
Events API
IntroductionSend your first eventEvent parametersStructured EventsActionsContextsCategoriesError handling
Self hosting
IntroductionInstall locallyInstall on VPSInstall on RenderInstall via DockerInstall via Docker and CoolifyOnboardingSetup .envSetup PWA & push notificationsBest practicesDurability testing
Other
VisionRoadmapContributing

Group events with contexts

Contexts help you connect related events. This is great for jobs, workflows, and multi-step tasks.

How it works:

  1. First event: set contextId and contextStart: true.
  2. Follow-up events: use the same contextId.
await ops.events.log({
  name: "daily billing sync started",
  avatar: "🧾",
  contextId: "billing_sync_2026_02_28",
  contextStart: true,
});

await ops.events.log({
  name: "processed invoices",
  contextId: "billing_sync_2026_02_28",
  content: "198 invoices processed",
});

await ops.events.log({
  name: "daily billing sync finished",
  contextId: "billing_sync_2026_02_28",
  type: "rows",
  content: [
    { label: "Succeeded", content: 194 },
    { label: "Failed", content: 4 },
  ],
});

Tip: make contextId easy to predict, like job_1234 or signup_user_55.

Add actionsCategories and search

Operational

PrivacyTerms
About the product
  • Use cases
  • Playground
  • API
  • Pitch
  • Pricing
  • Wordpress plugin
Related to the product
  • Open Source
  • Articles
  • VS Logsnag
Useful articles for your SaaS
  • My experience running a Commercial OSS project
  • Force post: The Payment Hack that lets Merchants charge you without approval
  • 6 Best practices for early stage B2B SaaS customer support
  • Setup event notifications for your SaaS