-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enhance: implement sentryForFrontend
#15433
base: develop
Are you sure you want to change the base?
Conversation
このPRによるapi.jsonの差分 差分はこちら--- base
+++ head
@@ -83346,6 +83346,37 @@
"translatorAvailable": {
"type": "boolean"
},
+ "sentryForFrontend": {
+ "type": [
+ "object",
+ "null"
+ ],
+ "properties": {
+ "options": {
+ "type": "object",
+ "properties": {
+ "dsn": {
+ "type": "string"
+ }
+ },
+ "additionalProperties": true,
+ "required": [
+ "dsn"
+ ]
+ },
+ "enableBrowserTracing": {
+ "type": "boolean"
+ },
+ "enableReplay": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "options",
+ "enableBrowserTracing",
+ "enableReplay"
+ ]
+ },
"mediaProxy": {
"type": "string"
},
@@ -83458,6 +83489,7 @@
"enableEmail",
"enableServiceWorker",
"translatorAvailable",
+ "sentryForFrontend",
"mediaProxy",
"enableUrlPreview",
"backgroundImageUrl", |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #15433 +/- ##
========================================
Coverage 40.33% 40.33%
========================================
Files 1611 1611
Lines 210678 210733 +55
Branches 4083 4049 -34
========================================
+ Hits 84972 84996 +24
- Misses 125064 125095 +31
Partials 642 642 ☔ View full report in Codecov by Sentry. |
ビルド時に |
e5fab49
to
8d7af4a
Compare
sentryForFrontend
sentryForFrontend
8d7af4a
to
486fca7
Compare
What
.config/default.yml
にコメントとしてのみ存在しているsentryForFrontend
を動くようにしました。Why
Additional info (optional)
動作確認は
.config/default.yml
にと書いた上で起動、クライアントを開いて
o0.ingest.sentry.io
にリクエストが飛んでいることをブラウザコンソールから確認できれば OK と思います。Checklist