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)
- Go to Web Experience → Apps → Add app and name it (e.g. storefront).
- 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>
- Paste it before
</head>on your site and deploy. - Within minutes, Overview fills with sessions and vitals.
- 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.