We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06e4bbd commit 0494de2Copy full SHA for 0494de2
.github/workflows/build.yml
@@ -138,7 +138,7 @@ jobs:
138
yarn datadog-ci sourcemaps upload ./dist \
139
--service=web \
140
--release-version=${{env.ACTION_VERSION}} \
141
- --minified-path-prefix="/parabol/dist/"
+ --minified-path-prefix="/home/node/parabol/dist/"
142
- name: Report Status
143
if: failure()
144
uses: ravsamhq/notify-slack-action@v2
packages/server/server.ts
@@ -30,7 +30,12 @@ tracer.init({
30
plugins: false,
31
version: __APP_VERSION__
32
})
33
-tracer.use('ioredis').use('http').use('pg')
+tracer
34
+ .use('ioredis')
35
+ .use('http', {
36
+ blocklist: ['/health', '/ready']
37
+ })
38
+ .use('pg')
39
40
process.on('SIGTERM', async (signal) => {
41
Logger.log(
0 commit comments