-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9849 from getsentry/prepare-release/7.88.0
meta(changelog): Update changelog for 7.88.0
- Loading branch information
Showing
32 changed files
with
13,638 additions
and
234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
export const COUNTER_METRIC_TYPE = 'c' as const; | ||
export const GAUGE_METRIC_TYPE = 'g' as const; | ||
export const SET_METRIC_TYPE = 's' as const; | ||
export const DISTRIBUTION_METRIC_TYPE = 'd' as const; | ||
|
||
/** | ||
* Normalization regex for metric names and metric tag names. | ||
* | ||
* This enforces that names and tag keys only contain alphanumeric characters, | ||
* underscores, forward slashes, periods, and dashes. | ||
* | ||
* See: https://develop.sentry.dev/sdk/metrics/#normalization | ||
*/ | ||
export const NAME_AND_TAG_KEY_NORMALIZATION_REGEX = /[^a-zA-Z0-9_/.-]+/g; | ||
|
||
/** | ||
* Normalization regex for metric tag values. | ||
* | ||
* This enforces that values only contain words, digits, or the following | ||
* special characters: _:/@.{}[\]$- | ||
* | ||
* See: https://develop.sentry.dev/sdk/metrics/#normalization | ||
*/ | ||
export const TAG_VALUE_NORMALIZATION_REGEX = /[^\w\d_:/@.{}[\]$-]+/g; | ||
|
||
/** | ||
* This does not match spec in https://develop.sentry.dev/sdk/metrics | ||
* but was chosen to optimize for the most common case in browser environments. | ||
*/ | ||
export const DEFAULT_FLUSH_INTERVAL = 5000; |
Oops, something went wrong.