Open AnalyticsDocs
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

  1. Open your website in Google Chrome, Edge, or Safari.
  2. Open Developer Tools by pressing F12 or Cmd + Option + I.
  3. Switch to the Network tab and filter by collect or open.js.
  4. Reload your page. You should see an HTTP 200 request to /open.js followed 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"}'