RUM Setup for Web
The Kloudfuse RUM SDK is available as a package for Web; include the Kloudfuse RUM SDK dependency in your application.
Browser support
The Kloudfuse RUM SDK targets ES2018. Internet Explorer and other browsers that do not support ES2018 are not supported.
Install
To begin instrumenting your frontend application, include the Kloudfuse RUM SDK dependency in your application:
-
npm
-
Script tag
npm install --save kf-browser-sdk
Add the following <script> tag to the <head> of your HTML page. This exposes the SDK as a global variable KfBrowserSdk:
<script src="https://cdn.kloudfuse.net/browser-sdk/kf-browser-sdk-v2.0.0.min.js"></script>
Configure
You must initialize the SDK to begin gathering frontend telemetry. Make this happen as early as possible in your applications loading phase. Customize and include the following code snippet:
-
npm
-
Script tag
import kfuseRumSDK from 'kf-browser-sdk';
kfuseRumSDK.init({
config: {
applicationId: '<APPLICATION_ID>',
clientToken: '<CLIENT_TOKEN>',
proxy: '<KFUSE_RUM_ENDPOINT>',
service: '<APPLICATION_NAME>',
env: 'production',
version: '1.0.0',
sessionSampleRate: 100,
defaultPrivacyLevel: 'mask-user-input',
enableSessionRecording: true,
enableLogCollection: true,
},
});
<script>
KfBrowserSdk.init({
config: {
applicationId: '<APPLICATION_ID>',
clientToken: '<CLIENT_TOKEN>',
proxy: '<KFUSE_RUM_ENDPOINT>',
service: '<APPLICATION_NAME>',
env: 'production',
version: '1.0.0',
sessionSampleRate: 100,
defaultPrivacyLevel: 'mask-user-input',
enableSessionRecording: true,
enableLogCollection: true,
},
});
</script>
The possible configuration options are:
|
After adding new application to RUM, copy the Integration Code, and use it to specify the |
- applicationId
-
A UUID that uniquely identifies a specific frontend application. All RUM telemetry will be associated with it.
- clientToken
-
A token that identifies valid producers of RUM telemetry. You may supply the value
dummyif authenticated ingestion is not enabled during Kloudfuse install. When authenticated ingestion is enabled, this value must match one of the configured authentication tokens for RUM. See our Enable Authenticated Ingestion documentation for AWS S3, Azure Blob, or Google GCS. - proxy
-
The Kloudfuse ingest endpoint for RUM events; its value would be
https://<kfuse-public-endpoint>/ddrumproxy.Your frontend application must not restrict
POSTrequests to this endpoint. Specifically, when using aContent-Securiy-Policy, your frontend application must allow requests to this endpoint. - service
-
A "friendly" name, unique to the instrumented frontend application.
- env
-
The name that identifies a logical source of RUM events. For example, the test environment or production environment.
- version
-
The string that represents the unique frontend application build, such as 1.0.0.
- sessionSampleRate
-
The percentage of user sessions that generate RUM telemetry; valid range is 0 to 100.
- defaultPrivacyLevel
-
Privacy level for session replays. Can be one of the following three values:
- mask
-
Masks all HTML text, user input, images, links and data-* attributes. Text on your application is replaced with X, rendering the page into a wireframe.
- mask-user-input
-
Masks most form fields: inputs, text areas, and checkbox values, while recording all other text "as is". Inputs are replaced using three asterisks, and text areas are obfuscated using space-preserving x characters.
- allow
-
Records everything unmasked.
- enablePrivacyForActionName
-
When
true, action names default toMasked Elementunless the element (or a parent) setsdata-dd-action-name. Defaults tofalse. See RUM Action Names. - trackViewsManually
-
When
true, disables automatic view tracking so you can drive view boundaries from your application usingkfuseRumSDK.startView(). Defaults tofalse. - excludedActivityUrls
-
Array of URL strings or regular expressions. Requests matching an entry are ignored when computing view loading time and "page activity" — useful for excluding polling, analytics beacons, or long-poll endpoints that would otherwise keep views from completing.
- allowedTracingUrls
-
List of URL patterns whose outbound HTTP requests should carry distributed-tracing headers so RUM events can be linked to their backend APM traces. See Connect RUM and Traces for the full configuration, including supported propagators.
- traceSampleRate
-
Percentage of traced requests for which the SDK injects propagation headers; valid range is 0 to 100. See Connect RUM and Traces.
- enableSessionRecording
-
Controls whether Kloudfuse records the user’s session.
- enableLogCollection
-
Controls whether Kloudfuse collects frontend logs.
- beforeSend
-
Optional callback
(event, context) ⇒ booleaninvoked before each RUM event is sent. Mutate the event to enrich or scrub it, or returnfalseto discard it.
Upload Source Maps
Source maps help unmangle minified JavaScript files in error stack traces, making debugging easier. Use the Kloudfuse CLI tool to upload source maps for your web application.
Configure Environment
Set your Kloudfuse API key as an environment variable:
export KF_API_KEY=<a valid kloudfuse RUM application client token>
Usage
Upload source maps using the kf-cli sourcemaps upload command:
kf-cli sourcemaps upload <directory> --baseUrl <base-url> --service <service-name> --release-version <version> --minified-path-prefix <url-prefix>
Options
<directory>-
Path to the directory containing your JavaScript source maps (.js.map files).
--baseUrl <url>-
Kloudfuse cluster base URL.
--service <service-name>-
Name of your frontend service (this should match the service parameter in your kfuse browser SDK initialization call).
--release-version <version>-
Version/release identifier for your application build.
--minified-path-prefix <url-prefix>-
URL prefix where your minified JavaScript files are served (e.g., https://example.com/static/js or /static/js).
Example
Upload all source maps in the current directory:
kf-cli sourcemaps upload \
./dist \
--service example-app \
--minified-path-prefix /assets \
--release-version 1.2.3
This will upload all sourcemap files found in the dist folder and set up the source mapping such that a RUM error event with the attributes service=example-app and version=1.2.3 that has stack frames with a minified js bundle URL such as https://example.com/assets/a.js will reference the sourcemap available at ./dist/a.js.map.