Install and manage RUM apps

Add an app, paste the SDK snippet, and send custom events.

rumappsinstallsdk

Install and manage RUM apps (step by step)

  1. Go to Web Experience → Apps → Add app and name it (e.g. storefront).
  2. Open the Install panel and copy the snippet (it embeds your RUM ingest key):
<script src="https://cdn.verops.io/rum-sdk.js"></script>
<script>
  VerOpsRUM.init({
    apiKey: "YOUR_RUM_INGEST_KEY",
    service: "storefront",
    environment: "prod",
    sampleRate: 1.0,
    trackErrors: true,
    trackWebVitals: true
  });
</script>
  1. Paste it before </head> on your site and deploy.
  2. Within minutes, Overview fills with sessions and vitals.
  3. For SPAs, send custom business events: VerOpsRUM.track("checkout_completed", {value: 79}).

Use a separate app per site/property and set environment to keep prod and staging apart. Lower sampleRate on very high-traffic sites.