-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 885 Bytes
/
package.json
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
{
"name": "pm2-sentrylogs",
"version": "0.0.2",
"description": "PM2 module to send logs to Sentry",
"main": "app.js",
"dependencies": {
"@sentry/node": "^5.4.0",
"pm2": "^3.5.1",
"pmx": "beta"
},
"repository": {
"type": "git",
"url": "https://github.com/boga/pm2-sentrylogs"
},
"config": {
"apps": "",
"apps_comment": "comma-separated list of applications which logs should be send to Sentry",
"sentry_dsn": "https://<code>@<hostname>/<projectId>",
"sentry_dsn_comment": "DNS of Sentry instance",
"environment": "develop",
"environment_comment": "https://docs.sentry.io/enriching-error-data/environments/?platform=node"
},
"apps": [
{
"merge_logs": true,
"max_memory_restart": "200M",
"script": "app.js"
}
],
"author": "Ivan Shnurchenko <ivan.shnurchenko@gmail.com>",
"license": "MIT"
}