We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b48096f commit e698dfaCopy full SHA for e698dfa
packages/core/src/metrics/constants.ts
@@ -23,4 +23,8 @@ export const NAME_AND_TAG_KEY_NORMALIZATION_REGEX = /[^a-zA-Z0-9_/.-]+/g;
23
*/
24
export const TAG_VALUE_NORMALIZATION_REGEX = /[^\w\d_:/@.{}[\]$-]+/g;
25
26
+/**
27
+ * This does not match spec in https://develop.sentry.dev/sdk/metrics
28
+ * but was chosen to optimize for the most common case in browser environments.
29
+ */
30
export const DEFAULT_FLUSH_INTERVAL = 5000;
0 commit comments