-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.03 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dummy Website</title>
<script
src="https://www.datadoghq-browser-agent.com/us5/v6/datadog-rum.js"
type="text/javascript">
</script>
<script>
window.DD_RUM && window.DD_RUM.init({
clientToken: 'pub0ec2c0208653403ee4d3abc94597f6ba',
applicationId: 'ac75dff8-bbb6-4279-a527-54707a82f3a0',
// `site` refers to the Datadog site parameter of your organization
// see https://docs.datadoghq.com/getting_started/site/
site: 'us5.datadoghq.com',
service: 'myjstest',
env: 'prod',
// Specify a version number to identify the deployed version of your application in Datadog
// version: '1.0.0',
sessionSampleRate: 100,
sessionReplaySampleRate: 20,
defaultPrivacyLevel: 'mask-user-input',
});
</script>
</head>
<body>
<h1>Welcome to Dummy Website</h1>
<p>This is a test page for Datadog RUM integration.</p>
</body>
</html>