DOCUMENTATION

Docs

How to send data to a console instance, and how to build your own client.

Three ways in. All of them are the same HTTP call underneath.

Which one do I need?

  • Running WordPress? Install the plugin, paste a key, done — nothing else on this page applies.
  • Running PHP or Node? Use the drop-in client, or write the twenty lines yourself.
  • Already instrumented with OpenTelemetry? Point the collector's logs pipeline at the console.
  • Anything else — Python, Go, Java, Rust, .NET? One POST, a key in a header, JSON in the body.
  • A CMS with no client yet — TYPO3, Drupal, Shopware, something in-house? Write to us. We build the client and integrate it; you do not pay for the plumbing.

The rules every client follows

  • Fire and forget. Reporting may never slow or break the app that reports.
  • One second, hard. A console that is down costs your users nothing.
  • Never retry. A retry storm during an incident is your outage, not ours.
  • Redact first. Passwords, tokens and cookies never leave the box.
  • Batch at the end. Collect during the request, send once after the response.

There is no SDK you must use and no vendor lock to accept. The WordPress client is public and is a working reference implementation of everything on these pages.