Skip to content

Commit 60d44fe

Browse files
committed
setup
1 parent cb65316 commit 60d44fe

File tree

2,300 files changed

+213242
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,300 files changed

+213242
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

main.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
const Sentry = require("@sentry/node");
2+
3+
Sentry.init({
4+
dsn: 'https://47a5b22f68b02f5fc80a0f5e10b092a9@o4505647181266944.ingest.sentry.io/4506300503425024',
5+
// Performance Monitoring
6+
tracesSampleRate: 1.0,
7+
// Set sampling rate for profiling - this is relative to tracesSampleRate
8+
profilesSampleRate: 1.0,
9+
});
10+
11+
const transaction = Sentry.startTransaction({
12+
op: "test",
13+
name: "My First Test Transaction",
14+
});
15+
16+
setTimeout(() => {
17+
try {
18+
foo();
19+
} catch (e) {
20+
Sentry.captureException(e);
21+
} finally {
22+
transaction.finish();
23+
}
24+
}, 99);

node_modules/.bin/color-support

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/mkdirp

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/node-gyp

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/node-which

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/nopt

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/rimraf

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/semver

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/sentry-prune-profiler-binaries

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)