Skip to main content

SvelteKit

The Coralogix RUM SDK is a library (plugin) for SvelteKit that provides telemetry instrumentation. Learn how to integrate with Coralogix's Real User Monitoring (RUM).

Prerequisites

Create a RUM API key with the Send Your Data permission preset. The Browser SDK setup below needs it.

Installation

Add the following code to the layout.svelte file:

<script lang="ts">
import { CoralogixRum } from '@coralogix/browser';
import { onMount } from 'svelte';
import '../app.css';

let { children } = $props();

onMount(() => {
CoralogixRum.init({
public_key: 'my-key-123',
environment: 'test',
application: 'my-app',
version: '1.0.0',
coralogixDomain: 'EU1'
});
});

</script>

{@render children()}
Last updated on
On this page
Was this page helpful?