-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathMonitoring.js
65 lines (61 loc) · 1.36 KB
/
Monitoring.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
let raven;
if (process.env.SENTRY_DSN) {
raven = new (require('raven')).Client(process.env.SENTRY_DSN);
raven.on('error', (e) => {
console.error('Sentry error');
console.error(e);
});
}
let logging = true;
const Monitoring = {
noticeError(error, {
request,
extra,
tags,
level = 'error',
} = {}) {
if (raven) {
let requestContext = {};
let userId;
if (request) {
userId = request.info.hostname;
const url = (
request.connection.info.protocol +
'://' +
request.info.host +
request.url.path
);
requestContext = {
url,
method: request.method,
path: request.path,
query_string: request.query,
data: (request.url.path !== '/graphql') ? request.payload : null,
};
}
raven.captureException(error, {
user: {
id: userId,
},
request: requestContext,
extra,
tags: {
...tags,
context: process.env.NODE_ENV || 'development',
},
level,
release: process.env.HEROKU_SLUG_COMMIT || 'development',
});
}
if (logging) {
console.error(error.stack);
if (extra) {
console.error(extra);
}
}
},
setLogging(value) {
logging = value;
},
};
export default Monitoring;