Telemetry Auditing & Diagnostics
Testing & Verification Guide
Confirm your Open Analytics installation is actively recording events and diagnosing telemetry with these verification steps.
1. Browser Network Tab Audit
- Open your website in Google Chrome, Edge, or Safari.
- Open Developer Tools by pressing F12 or Cmd + Option + I.
- Switch to the Network tab and filter by
collectoropen.js. - Reload your page. You should see an HTTP 200 request to
/open.jsfollowed by periodic beacon calls to/api/v1/collect.
2. Terminal Ingestion Test (cURL)
You can simulate a client event directly from your terminal using this cURL command:
curl -X POST https://openanalytics.org.in/api/v1/collect \
-H "Content-Type: application/json" \
-d '{"projectId": "open_prj_your_key", "pathname": "/test-page", "title": "Test Verification", "device": "desktop"}'