Skip to content

Commit 0494de2

Browse files
committed
fix: abs path for sourcemaps, add hc to blocklist for dd
Signed-off-by: Matt Krick <[email protected]>
1 parent 06e4bbd commit 0494de2

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Diff for: .github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
yarn datadog-ci sourcemaps upload ./dist \
139139
--service=web \
140140
--release-version=${{env.ACTION_VERSION}} \
141-
--minified-path-prefix="/parabol/dist/"
141+
--minified-path-prefix="/home/node/parabol/dist/"
142142
- name: Report Status
143143
if: failure()
144144
uses: ravsamhq/notify-slack-action@v2

Diff for: packages/server/server.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ tracer.init({
3030
plugins: false,
3131
version: __APP_VERSION__
3232
})
33-
tracer.use('ioredis').use('http').use('pg')
33+
tracer
34+
.use('ioredis')
35+
.use('http', {
36+
blocklist: ['/health', '/ready']
37+
})
38+
.use('pg')
3439

3540
process.on('SIGTERM', async (signal) => {
3641
Logger.log(

0 commit comments

Comments
 (0)