forked from VeXell/pm2-prom-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.35 KB
/
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
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
{
"name": "pm2-prom-module",
"version": "2.3.0",
"description": "PM2 module to help collect applications statistic and send it to Prometheus server",
"main": "index.js",
"dependencies": {
"pidusage": "^3.0.2",
"pm2": "^5.3.0",
"pmx": "beta",
"prom-client": "^15.1.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"publish": "npm run build && npm publish"
},
"files": [
"README.md",
"**/*.js"
],
"apps": [
{
"merge_logs": true,
"max_memory_restart": "256M",
"script": "index.js"
}
],
"config": {
"port": "9988",
"service_name": "",
"debug": false,
"aggregate_app_metrics": true
},
"devDependencies": {
"@types/node": "^18.19.4",
"@types/pidusage": "^2.0.5",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/VeXell/pm2-prom-module.git"
},
"author": "Viacheslav Volkov ([email protected])",
"license": "MIT",
"keywords": [
"PM2",
"Prometheus",
"Metrics",
"Monitoring",
"Prom client",
"Module",
"Node.js",
"Javascript"
]
}