Skip to content

Commit

Permalink
added: comment
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-8 committed Nov 26, 2024
1 parent cc48ba0 commit f35f3ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/app/datadog.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if (datadogEnabled) {
site: 'datadoghq.com',
service: el.dataset.service,
forwardErrorsToLogs: true,
// Only tracked sessions send logs.
// Only tracked sessions send logs; from 0 to 100
sessionSampleRate: 100,
telemetrySampleRate: 0,
})
Expand All @@ -22,9 +22,9 @@ if (datadogEnabled) {
service: el.dataset.service,
// Specify a version number to identify the deployed version of your application in Datadog
// version: '1.0.0',
// 'Browser RUM' session sample rate
// 'Browser RUM' session sample rate; from 0 to 100
sessionSampleRate: 1,
// 'Browser RUM & Session Replay' sample rate (% from sessions tracked by RUM/sessionSampleRate)
// 'Browser RUM & Session Replay' sample rate (% from sessions tracked by RUM/sessionSampleRate); from 0 to 100
sessionReplaySampleRate: 10,
telemetrySampleRate: 0,
trackUserInteractions: true,
Expand Down

0 comments on commit f35f3ba

Please sign in to comment.