Authored by htoooth

fix

... ... @@ -62,8 +62,8 @@ const DURATION = {
};
const SERVER = {
aws: endpoint(config.influxdb.aws),
qcloud: endpoint(config.influxdb.qcloud)
aws: endpoint(config.apm.aws),
qcloud: endpoint(config.apm.qcloud)
};
const profile_service = {
... ...
... ... @@ -9,6 +9,10 @@ const defaults = {
buildDir: path.normalize(__dirname + '/../packages/'),
dbDir: path.normalize(__dirname + '/../db'),
influxdb: {
host: 'influxdblog.web.yohoops.org',
port: 4444,
},
apm: {
aws: {
host: 'influxd.yoho.cn',
port: 80
... ... @@ -71,7 +75,7 @@ const specific = {
development: {},
test: {},
production: {
influxdb: {
apm: {
aws: {
host: '172.31.26.70',
port: 8086
... ...