config.js
2.91 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/**
* config.js
* @author: feng.chen<feng.chen@yoho.cn>
* @date: 2017/04/13
*/
'use strict';
const isProduction = process.env.NODE_ENV === 'production';
const isTest = process.env.NODE_ENV === 'test';
module.exports = {
app: 'yoho-apm',
appVersion: '0.0.1', // 调用api的版本
port: 6009,
siteUrl: '//shop.yohobuy.com',
cookieDomain: '.yohobuy.com',
domains: [/yohobuy\.com^/],
loggers: {
infoFile: {
name: 'info',
level: 'info',
filename: '/Data/log/yoho-yohobuy-apm/info.log',
maxFiles: 7
},
errorFile: {
name: 'error',
level: 'error',
filename: '/Data/log/yoho-yohobuy-apm/error.log',
handleExceptions: true,
maxFiles: 7
},
console: {
level: 'info',
colorize: 'all',
prettyPrint: true
}
},
sourceMap: {
domain: 'http://static-ci.yoho.cn'
},
reportApi: {
host: 'influxd.yoho.cn',
db: 'web-apm',
measurement: 'api-info',
duration: 2000,
records: 1
},
reportRoute: {
host: 'influxd.yoho.cn',
db: 'web-apm',
measurement: 'route-info',
duration: 2000,
records: 1
},
mysql: {
host: '192.168.102.168',
port: '3306',
db: 'webapm',
userName: 'root',
password: 'root'
},
table: {
slow: 'slow_duration_new',
error: 'error_report',
perf: 'perf_report'
},
slowRoute: {
min: 1000,
max: 10 * 1000
// min: 0,
// max: 10 * 1000
},
limit: 140
};
if (isProduction) {
Object.assign(module.exports, {
reportApi: {
host: '10.66.0.139',
port: 8086,
db: 'web-apm',
measurement: 'api-info',
duration: 2000,
records: 10
},
reportRoute: {
host: '10.66.0.139',
port: 8086,
db: 'web-apm',
measurement: 'route-info',
duration: 2000,
records: 10
},
sourceMap: {
domain: 'http://10.66.101.9:6006'
},
mysql: {
host: '10.66.0.139',
port: '3306',
db: 'webapm',
userName: 'root',
password: 'yB877Jy7tV6juIYk'
}
});
}
if (isTest) {
Object.assign(module.exports, {
reportApi: {
host: 'influxdblog.web.yohoops.org',
db: 'web-apm',
measurement: 'api-info',
duration: 2000,
records: 10
},
reportRoute: {
host: 'influxdblog.web.yohoops.org',
db: 'web-apm',
measurement: 'route-info',
duration: 2000,
records: 10
},
sourceMap: {
domain: 'http://10.66.101.9:6006'
}
});
}