Skip to content

Commit a4f2867

Browse files
committed
feat: sentry instrumentation
1 parent 5ff32cd commit a4f2867

File tree

8 files changed

+166
-21
lines changed

8 files changed

+166
-21
lines changed

.github/workflows/sentry-release.yml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Sentry Release
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- master
8+
9+
permissions: # added using https://github.com/step-security/secure-workflows
10+
contents: read
11+
12+
jobs:
13+
release:
14+
runs-on: ubuntu-latest
15+
environment: production
16+
outputs:
17+
version: ${{ steps.set-version.outputs.version }}
18+
steps:
19+
- uses: actions/checkout@v2
20+
21+
- name: Set up Node.js
22+
uses: actions/setup-node@v2
23+
with:
24+
node-version: 16
25+
26+
- name: Install dependencies
27+
run: yarn install
28+
29+
- name: Build and deploy subgraph
30+
run: yarn build
31+
32+
- name: Set version
33+
id: set-version
34+
run: echo "version=v$(cat package.json | jq -r .version)-$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT"
35+
36+
- name: Create Sentry release
37+
uses: getsentry/[email protected]
38+
env:
39+
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
40+
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
41+
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
42+
with:
43+
environment: production
44+
version: ${{ steps.set-version.outputs.version }}
45+
sourcemaps: ./dist
46+

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@
4141
"@loadable/component": "^5.12.0",
4242
"@reduxjs/toolkit": "^1.6.1",
4343
"@rehooks/local-storage": "^2.4.4",
44+
"@sentry/react": "^7.37.2",
45+
"@sentry/tracing": "^7.37.2",
4446
"@uniswap/sdk": "^3.0.3",
4547
"@web3-react/abstract-connector": "^6.0.7",
4648
"@web3-react/core": "^6.1.9",

scripts/sentry-release.sh

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/bash
2+
3+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
4+
5+
cd $SCRIPT_DIR/..
6+
7+
version="linguo@v$(cat package.json | jq -r .version)-$(git rev-parse --short HEAD)"
8+
sentry-cli releases new "$version"
9+
sentry-cli releases set-commits "$version" --auto
10+
11+
rm -rf dist/
12+
yarn build
13+
sentry-cli releases files $version upload-sourcemaps dist/
14+
15+
sentry-cli releases finalize "$version"
16+
17+
cd -

src/app/MainRouter.jsx

+18-18
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import { SWRConfig } from 'swr';
33
import { request } from 'graphql-request';
44

5-
import { Redirect, Route, Switch } from 'react-router-dom';
5+
import { Redirect, Switch } from 'react-router-dom';
66
import loadable from '@loadable/component';
77
import { Layout } from 'antd';
88
import { ConnectedRouter } from 'connected-react-router';
@@ -15,7 +15,7 @@ import Footer from '~/layout/Footer';
1515
import Navbar from '~/layout/Header/Navbar';
1616
import { DrawerMenu } from '~/layout/Header/Menu';
1717

18-
import { history } from '~/store';
18+
import { history, SentryRoute } from '~/store';
1919
import Content from './Content';
2020
import Web3ConnectionManager from '~/components/Web3ConnectionManager';
2121
import GlobalWarnings from '~/components/GlobalWarnings';
@@ -67,30 +67,30 @@ export default function MainRouter() {
6767
<TranslatorSkillsProvider>
6868
<Content>
6969
<Switch>
70-
<Route exact path={r.ROOT}>
70+
<SentryRoute exact path={r.ROOT}>
7171
<Redirect to={r.HOME} />
72-
</Route>
73-
<Route exact path={r.HOME}>
72+
</SentryRoute>
73+
<SentryRoute exact path={r.HOME}>
7474
<Home />
75-
</Route>
76-
<Route exact path={r.FAQ}>
75+
</SentryRoute>
76+
<SentryRoute exact path={r.FAQ}>
7777
<Faq />
78-
</Route>
79-
<Route exact path={r.TRANSLATOR_DASHBOARD}>
78+
</SentryRoute>
79+
<SentryRoute exact path={r.TRANSLATOR_DASHBOARD}>
8080
<TranslatorDashboard />
81-
</Route>
82-
<Route exact path={r.TRANSLATOR_SETTINGS}>
81+
</SentryRoute>
82+
<SentryRoute exact path={r.TRANSLATOR_SETTINGS}>
8383
<TranslatorSettings />
84-
</Route>
85-
<Route exact path={r.TRANSLATION_REQUEST}>
84+
</SentryRoute>
85+
<SentryRoute exact path={r.TRANSLATION_REQUEST}>
8686
<TranslationRequest />
87-
</Route>
88-
<Route exact path={r.REQUESTER_DASHBOARD}>
87+
</SentryRoute>
88+
<SentryRoute exact path={r.REQUESTER_DASHBOARD}>
8989
<RequesterDashboard />
90-
</Route>
91-
<Route exact path={r.TRANSLATION_TASK_DETAILS}>
90+
</SentryRoute>
91+
<SentryRoute exact path={r.TRANSLATION_TASK_DETAILS}>
9292
<TranslationDetails />
93-
</Route>
93+
</SentryRoute>
9494
</Switch>
9595
</Content>
9696
</TranslatorSkillsProvider>

src/index.jsx

+14-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,25 @@ import { Titled } from 'react-titled';
44
import { render } from 'react-dom';
55
import { Provider } from 'react-redux';
66
import { PersistGate } from 'redux-persist/integration/react';
7+
import * as Sentry from '@sentry/react';
8+
import { BrowserTracing } from '@sentry/tracing';
79
import { Spin } from '~/adapters/antd';
8-
import store, { persistor } from './store';
10+
import store, { persistor, history } from './store';
911
import App from './app/App';
1012

1113
const loading = <Spin tip="Loading local data..." />;
1214

15+
Sentry.init({
16+
dsn: process.env.REACT_APP_SENTRY_ENDPOINT,
17+
environment: process.env.REACT_APP_CONTEXT,
18+
integrations: [
19+
new BrowserTracing({
20+
routingInstrumentation: Sentry.reactRouterV5Instrumentation(history),
21+
}),
22+
],
23+
tracesSampleRate: 1.0,
24+
});
25+
1326
render(
1427
<Provider store={store}>
1528
<PersistGate loading={loading} persistor={persistor}>

src/store/history.js

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
import { createBrowserHistory } from 'history';
2+
import { Route } from 'react-router-dom';
3+
import * as Sentry from '@sentry/react';
4+
5+
export const SentryRoute = Sentry.withSentryRouting(Route);
26

37
const history = createBrowserHistory();
48
export default history;

src/store/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export { default, persistor, runSaga } from './store';
2-
export { default as history } from './history';
2+
export { default as history, SentryRoute } from './history';

yarn.lock

+64-1
Original file line numberDiff line numberDiff line change
@@ -2926,6 +2926,69 @@
29262926
dependencies:
29272927
any-observable "^0.3.0"
29282928

2929+
2930+
version "7.37.2"
2931+
resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-7.37.2.tgz#355dd28ad12677d63e0b12c5209d12b3f98ac3a4"
2932+
integrity sha512-UvKfpx6+BUdV+rGAXqDBznagfz44Ut+x2h/i0OZPNCEpXaH9KAQOlv06I66861aXiucWFRb1lAMrN4+cE9aJIg==
2933+
dependencies:
2934+
"@sentry/core" "7.37.2"
2935+
"@sentry/replay" "7.37.2"
2936+
"@sentry/types" "7.37.2"
2937+
"@sentry/utils" "7.37.2"
2938+
tslib "^1.9.3"
2939+
2940+
2941+
version "7.37.2"
2942+
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-7.37.2.tgz#959b2bf953f442b07f8377d90f4f7735cf260ae4"
2943+
integrity sha512-LjofMDSTyVeBErl9N7TTqlyEVuW1g6U4iuJtdZ75JohnvVxzWdpZfWfddwQ6h7nGWfe9dNg0fGs1wxKtMhY+MA==
2944+
dependencies:
2945+
"@sentry/types" "7.37.2"
2946+
"@sentry/utils" "7.37.2"
2947+
tslib "^1.9.3"
2948+
2949+
"@sentry/react@^7.37.2":
2950+
version "7.37.2"
2951+
resolved "https://registry.yarnpkg.com/@sentry/react/-/react-7.37.2.tgz#f5ecc4071c5dd0e8446103c24e94edda520a1217"
2952+
integrity sha512-e5NFQAwHSGVyMUGYjvYXLI/QECkXkZ2BNUo+OHr5mAYqcIyGSA38tX7RJetrhonVjjpJp/ZVzlOyxQkpnBfBLw==
2953+
dependencies:
2954+
"@sentry/browser" "7.37.2"
2955+
"@sentry/types" "7.37.2"
2956+
"@sentry/utils" "7.37.2"
2957+
hoist-non-react-statics "^3.3.2"
2958+
tslib "^1.9.3"
2959+
2960+
2961+
version "7.37.2"
2962+
resolved "https://registry.yarnpkg.com/@sentry/replay/-/replay-7.37.2.tgz#eb49b7a1286335c1a4de49b386d0258e5c789682"
2963+
integrity sha512-y8Gfc7EGfGU4eVae5HAtch2YgkiTzNPi16dcqPX9jtIHDwiurGqWcaOgs5HoGJm45eMfl6LvcE7MPbwqcDkPIA==
2964+
dependencies:
2965+
"@sentry/core" "7.37.2"
2966+
"@sentry/types" "7.37.2"
2967+
"@sentry/utils" "7.37.2"
2968+
2969+
"@sentry/tracing@^7.37.2":
2970+
version "7.37.2"
2971+
resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-7.37.2.tgz#88f149aea6a4d5a3cfb9145868d885fac9fffb52"
2972+
integrity sha512-XBVvxbV5TADq2rHg/kJqGqDfOP8n2myMUxMMpfHMb38NrxkxQwXy+gDe41bA8FJKA2k7Y3Wkn8ZC/PelQ8c+ag==
2973+
dependencies:
2974+
"@sentry/core" "7.37.2"
2975+
"@sentry/types" "7.37.2"
2976+
"@sentry/utils" "7.37.2"
2977+
tslib "^1.9.3"
2978+
2979+
2980+
version "7.37.2"
2981+
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-7.37.2.tgz#99fd76230d7c1d3c6901ed4c0bea35be7d6fe26d"
2982+
integrity sha512-SxKQOCX94ZaQM4C2ysNjHdJsjYapu/NYZCz1cnPyCdDvYfhwiVge1uq6ZHiQ/ARfxAAOmc3R4Mh3VvEz7WUOdw==
2983+
2984+
2985+
version "7.37.2"
2986+
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-7.37.2.tgz#14dea644454e3df247fb113fc834f509c1f0e48c"
2987+
integrity sha512-5irN1nN/mtdOoWwsJiwBK0gPgNMkciUubEMbCaaXqJaGyGz8+yfDvXj7L+xGYiU57z+7+QkkSKxKEZ/IcBpjVQ==
2988+
dependencies:
2989+
"@sentry/types" "7.37.2"
2990+
tslib "^1.9.3"
2991+
29292992
"@sindresorhus/is@^0.14.0":
29302993
version "0.14.0"
29312994
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea"
@@ -13969,7 +14032,7 @@ tsconfig-paths@^3.11.0:
1396914032
minimist "^1.2.0"
1397014033
strip-bom "^3.0.0"
1397114034

13972-
14035+
[email protected], tslib@^1.9.3:
1397314036
version "1.14.1"
1397414037
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
1397514038
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==

0 commit comments

Comments
 (0)