Documentation Index
Fetch the complete documentation index at: https://revlytics.co/docs/llms.txt
Use this file to discover all available pages before exploring further.
How it works
Revlytics captures unhandled JavaScript errors viawindow.onerror and unhandledrejection events. Errors are sent as error event types.
Captured data
| Field | Description |
|---|---|
error_name | Error type (e.g., TypeError, ReferenceError) |
error_message | Error message |
error_stack | Stack trace (up to 2KB) |
filename | Source file URL |
lineno | Line number |
colno | Column number |
Deduplication
The same error (same message + filename) is deduplicated within a 1-minute window. This prevents error floods from crashing loops or rapidly-firing events.Filtered errors
The following are automatically filtered out:- ResizeObserver loop errors — Common, benign browser noise
- Third-party script errors — Errors from scripts on other domains (where
filenamedoesn’t match your hostname)