-
-
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
@@ -83355,6 +83355,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"
},
@@ -83468,6 +83499,7 @@
"enableEmail",
"enableServiceWorker",
"translatorAvailable",
+ "sentryForFrontend",
"mediaProxy",
"enableUrlPreview",
"backgroundImageUrl", |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #15433 +/- ##
===========================================
+ Coverage 42.18% 44.15% +1.96%
===========================================
Files 1610 1614 +4
Lines 162156 168027 +5871
Branches 4057 4113 +56
===========================================
+ Hits 68401 74187 +5786
- Misses 93282 93367 +85
Partials 473 473 ☔ 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