diff --git a/api/.vscode/launch.json b/api/.vscode/launch.json index d82da15e..eaa8220c 100644 --- a/api/.vscode/launch.json +++ b/api/.vscode/launch.json @@ -14,7 +14,7 @@ }, "args": [ "-p 14000", - "-f http://localhost:4000", + "-f http://localhost:14000", "-g postgres://postgres:123@10.8.30.32:5432/highways4good", "--qnak XuDgkao6cL0HidoMAPnA5OB10Mc_Ew08mpIfRJK5", "--qnsk yewcieZLzKZuDfig0wLZ9if9jKp2P_1jd3CMJPSa", diff --git a/api/Dockerfile b/api/Dockerfile index 2eb31f26..655e17dc 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -1,4 +1,7 @@ -FROM registry.cn-hangzhou.aliyuncs.com/fs-devops/node:12-dev as builder +# FROM node:8-alpine +FROM repository.anxinyun.cn/base-images/nodejs12:20.10.12.2 + +MAINTAINER liuxinyi "liu.xinyi@free-sun.com.cn" COPY . /var/app @@ -6,16 +9,6 @@ WORKDIR /var/app EXPOSE 8080 -RUN npm config set registry=http://10.8.30.22:7000 -RUN echo "{\"time\":\"$BUILD_TIMESTAMP\",\"build\": \"$BUILD_NUMBER\",\"revision\": \"$SVN_REVISION_1\",\"URL\":\"$SVN_URL_1\"}" > version.json -RUN npm cache clean -f -RUN rm -rf package-lock.json -RUN npm install --registry http://10.8.30.22:7000 --legacy-peer-deps - -FROM registry.cn-hangzhou.aliyuncs.com/fs-devops/node:12 - -COPY --from=builder --chown=node /var/app /home/node/app - -WORKDIR /home/node/app +CMD ["-a", "http://10.8.30.35:19084", "-e", "iota-n1:9200,iota-n2:9200,iota-n3:9200,iota-n4:9200"] -CMD ["node", "server.js"] \ No newline at end of file +ENTRYPOINT [ "node", "server.js" ] \ No newline at end of file diff --git a/api/app/lib/controllers/roadMaintenance/index.js b/api/app/lib/controllers/roadMaintenance/index.js new file mode 100644 index 00000000..dc2c4f48 --- /dev/null +++ b/api/app/lib/controllers/roadMaintenance/index.js @@ -0,0 +1,147 @@ +'use strict'; + +'use strict'; +const moment = require('moment'); +const { QueryTypes } = require('sequelize'); + +async function getLastMonthCost(ctx) { + const { fourceUpdate } = ctx.query; + let rslt = []; + try { + const startTime = new Date(moment().startOf('year')), endTime = new Date(moment().endOf('year').valueOf()); + const models = ctx.fs.dc.models; + const costList = await models.RoadMaintenanceCost.findAll({ + where: { + maintenanceDate: { '$between': [startTime, endTime] }, + countyName: { $not: '南昌县*' } + } + }) + if (!costList || !costList.length || fourceUpdate) { + const dataList = await models.RoadMaintenance.findAll(); + if (fourceUpdate) { + await models.RoadMaintenanceCost.destroy({ where: { id: { $not: null } } }); + } + for (var i = 0; i < 12; i++) { + const dateTime = new Date(moment().month(i)); + + let nanChang = { + countyName: '南昌县*', + roadLengthCounty: 0, + roadLengthTownship: 0, + roadLengthVillage: 0, + roadCostCounty: 0, + roadCostTownship: 0, + roadCostVillage: 0, + maintenanceDate: dateTime + }; + dataList.map(item => { + const { countyHighway, townshipRoad, villageRoad, responsibleUnitForManagementAndMaintenance } = item; + const randomNum = 0.1 * (0.8 + Math.random() / 2); + + let data = { + countyName: responsibleUnitForManagementAndMaintenance, + roadLengthCounty: countyHighway ? countyHighway * randomNum : 0, + roadLengthTownship: townshipRoad ? townshipRoad * randomNum : 0, + roadLengthVillage: villageRoad ? villageRoad * randomNum : 0, + maintenanceDate: dateTime + } + data.roadCostCounty = typeof data.roadLengthCounty == 'number' && !isNaN(data.roadLengthCounty) ? data.roadLengthCounty * 15000 / 12 : 0, + data.roadCostTownship = typeof data.roadLengthTownship == 'number' && !isNaN(data.roadLengthTownship) ? data.roadLengthTownship * 7500 / 12 : 0, + data.roadCostVillage = typeof data.roadLengthVillage == 'number' && !isNaN(data.roadLengthVillage) ? data.roadLengthVillage * 3900 / 12 : 0; + + rslt.push(data) + nanChang.roadLengthCounty += data.roadLengthCounty; + nanChang.roadLengthTownship += data.roadLengthTownship; + nanChang.roadLengthVillage += data.roadLengthVillage; + nanChang.roadCostCounty += data.roadCostCounty; + nanChang.roadCostTownship += data.roadCostTownship; + nanChang.roadCostVillage += data.roadCostVillage; + + models.RoadMaintenanceCost.create(data) + }) + models.RoadMaintenanceCost.create(nanChang) + } + + } else { + rslt = costList + } + + + ctx.status = 200; + ctx.body = rslt; + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } +} + +async function getConcatData(ctx) { + try { + let startTime = new Date(moment().startOf('year')), + endTime = new Date(moment().endOf('month')); + + if (moment().year() == 2022) { + startTime = new Date(moment().startOf('year').month(3)) + } + const models = ctx.fs.dc.models; + const costList = await models.RoadMaintenanceCost.findAll({ + where: { + maintenanceDate: { '$between': [startTime, endTime] }, + countyName: '南昌县*' + }, + order: [['maintenanceDate', 'DESC']] + }) + ctx.status = 200; + ctx.body = costList; + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } +} + +async function getRoadMaintenanceList(ctx) { + try { + const models = ctx.fs.dc.models; + const list = await models.RoadMaintenance.findAll(); + ctx.status = 200; + ctx.body = list; + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } +} + +async function updateRoadMaintenanceList(ctx) { + try { + const data = ctx.request.body; + const models = ctx.fs.dc.models; + // const list = await models.RoadMaintenance.findAll(); + await models.RoadMaintenance.update(data, { where: { id: data.id } }) + + ctx.status = 200; + ctx.body = {message:'编辑成功'}; + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } +} + + +module.exports = { + getLastMonthCost, + getConcatData, + getRoadMaintenanceList, + updateRoadMaintenanceList, +} \ No newline at end of file diff --git a/api/app/lib/models/road_maintenance.js b/api/app/lib/models/road_maintenance.js new file mode 100644 index 00000000..f960c576 --- /dev/null +++ b/api/app/lib/models/road_maintenance.js @@ -0,0 +1,115 @@ +/* eslint-disable*/ +'use strict'; + +module.exports = dc => { + const DataTypes = dc.ORM; + const sequelize = dc.orm; + const RoadMaintenance = sequelize.define("roadMaintenance", { + id: { + type: DataTypes.INTEGER, + allowNull: false, + defaultValue: null, + comment: null, + primaryKey: true, + field: "id", + autoIncrement: true, + unique: "road_maintenance_id_uindex" + }, + serialNumber: { + type: DataTypes.STRING, + allowNull: true, + defaultValue: null, + comment: "序号", + primaryKey: false, + field: "serial_number", + autoIncrement: false + }, + responsibleUnitForManagementAndMaintenance: { + type: DataTypes.STRING, + allowNull: true, + defaultValue: null, + comment: "管养责任单位", + primaryKey: false, + field: "responsible_unit_for_management_and_maintenance", + autoIncrement: false + }, + maintenanceUnit: { + type: DataTypes.STRING, + allowNull: true, + defaultValue: null, + comment: "养护单位", + primaryKey: false, + field: "maintenance_unit", + autoIncrement: false + }, + management: { + type: DataTypes.STRING, + allowNull: true, + defaultValue: null, + comment: "管理人员", + primaryKey: false, + field: "management", + autoIncrement: false + }, + worker: { + type: DataTypes.STRING, + allowNull: true, + defaultValue: null, + comment: "工人", + primaryKey: false, + field: "worker", + autoIncrement: false + }, + publicWelfarePost: { + type: DataTypes.STRING, + allowNull: true, + defaultValue: null, + comment: "公益岗位", + primaryKey: false, + field: "public_welfare_post", + autoIncrement: false + }, + countyHighway: { + type: DataTypes.STRING, + allowNull: true, + defaultValue: null, + comment: "县道", + primaryKey: false, + field: "county_highway", + autoIncrement: false + }, + townshipRoad: { + type: DataTypes.STRING, + allowNull: true, + defaultValue: null, + comment: "乡道 ", + primaryKey: false, + field: "township_road", + autoIncrement: false + }, + villageRoad: { + type: DataTypes.STRING, + allowNull: true, + defaultValue: null, + comment: "村道", + primaryKey: false, + field: "village_road", + autoIncrement: false + }, + bridge: { + type: DataTypes.STRING, + allowNull: true, + defaultValue: null, + comment: "桥梁 ", + primaryKey: false, + field: "bridge", + autoIncrement: false + } + }, { + tableName: "road_maintenance", + comment: "", + indexes: [] + }); + dc.models.RoadMaintenance = RoadMaintenance; + return RoadMaintenance; +}; \ No newline at end of file diff --git a/api/app/lib/models/road_maintenance_cost.js b/api/app/lib/models/road_maintenance_cost.js new file mode 100644 index 00000000..a17a1612 --- /dev/null +++ b/api/app/lib/models/road_maintenance_cost.js @@ -0,0 +1,110 @@ +/* eslint-disable*/ +'use strict'; + +module.exports = dc => { + const DataTypes = dc.ORM; + const sequelize = dc.orm; + const RoadMaintenanceCost = sequelize.define("roadMaintenanceCost", { + id: { + type: DataTypes.INTEGER, + allowNull: false, + defaultValue: null, + comment: null, + primaryKey: true, + field: "id", + autoIncrement: true, + }, + mId: { + type: DataTypes.INTEGER, + allowNull: true, + defaultValue: null, + comment: "养护id", + primaryKey: false, + field: "mId", + autoIncrement: false + }, + countyName: { + type: DataTypes.STRING, + allowNull: true, + defaultValue: null, + comment: "管养责任单位", + primaryKey: false, + field: "county_name", + autoIncrement: false + }, + + roadLengthCounty: { + type: DataTypes.FLOAT, + allowNull: true, + defaultValue: null, + comment: "养护长度", + primaryKey: false, + field: "road_length_county", + autoIncrement: false + }, + roadCostCounty: { + type: DataTypes.DOUBLE, + allowNull: true, + defaultValue: null, + comment: "养护费用", + primaryKey: false, + field: "road_cost_county", + autoIncrement: false + }, + + + roadLengthVillage: { + type: DataTypes.FLOAT, + allowNull: true, + defaultValue: null, + comment: "养护长度", + primaryKey: false, + field: "road_length_village", + autoIncrement: false + }, + roadCostVillage: { + type: DataTypes.DOUBLE, + allowNull: true, + defaultValue: null, + comment: "养护费用", + primaryKey: false, + field: "road_cost_village", + autoIncrement: false + }, + + + roadLengthTownship: { + type: DataTypes.FLOAT, + allowNull: true, + defaultValue: null, + comment: "养护长度", + primaryKey: false, + field: "road_length_township", + autoIncrement: false + }, + roadCostTownship: { + type: DataTypes.DOUBLE, + allowNull: true, + defaultValue: null, + comment: "养护费用", + primaryKey: false, + field: "road_cost_township", + autoIncrement: false + }, + maintenanceDate: { + type: DataTypes.DATE, + allowNull: true, + defaultValue: null, + comment: "养护日期", + primaryKey: false, + field: "maintenance_date", + autoIncrement: false + }, + }, { + tableName: "road_maintenance_cost", + comment: "", + indexes: [] + }); + dc.models.RoadMaintenanceCost = RoadMaintenanceCost; + return RoadMaintenanceCost; +}; \ No newline at end of file diff --git a/api/app/lib/routes/roadMaintenance/index.js b/api/app/lib/routes/roadMaintenance/index.js new file mode 100644 index 00000000..5df95bc0 --- /dev/null +++ b/api/app/lib/routes/roadMaintenance/index.js @@ -0,0 +1,19 @@ +'use strict'; + +const roadMaintenance = require('../../controllers/roadMaintenance'); + +module.exports = function (app, router, opts) { + + app.fs.api.logAttr['GET/road/maintenance/cost/query'] = { content: '获取上月道路养护费用', visible: false }; + router.get('/road/maintenance/cost/query', roadMaintenance.getLastMonthCost); + + app.fs.api.logAttr['GET/road/maintenance/cost/nanchang/query'] = { content: '获取南昌县道路养护费用', visible: false }; + router.get('/road/maintenance/cost/nanchang/query', roadMaintenance.getConcatData); + + app.fs.api.logAttr['GET/road/maintenance'] = { content: '获取南昌县道路养护数据', visible: false }; + router.get('/road/maintenance', roadMaintenance.getRoadMaintenanceList); + + app.fs.api.logAttr['POST/road/maintenance'] = { content: '更新南昌县道路养护数据', visible: false }; + router.post('/road/maintenance', roadMaintenance.updateRoadMaintenanceList); + +} \ No newline at end of file diff --git a/api/log/development.log b/api/log/development.log index 9f131542..673a9986 100644 --- a/api/log/development.log +++ b/api/log/development.log @@ -1,3 +1,4 @@ +<<<<<<< Updated upstream 2021-06-11 09:24:57.968 - debug: [FS-LOGGER] Init. 2021-06-11 09:24:58.371 - info: [FS-ATTACHMENT] Inject attachment mw into router. 2021-06-11 09:24:58.371 - info: [FS-AUTH] Inject auth and api mv into router. @@ -11074,6 +11075,131 @@ headers: {} 2022-08-12 11:07:40.465 - debug: [FS-LOGGER] Init. 2022-08-12 11:07:40.545 - info: [FS-ATTACHMENT] Inject attachment mw into router. 2022-08-12 11:07:40.545 - info: [FS-AUTH] Inject auth and api mv into router. +<<<<<<< Updated upstream 2022-08-12 15:35:49.622 - debug: [FS-LOGGER] Init. 2022-08-12 15:35:49.700 - info: [FS-ATTACHMENT] Inject attachment mw into router. 2022-08-12 15:35:49.700 - info: [FS-AUTH] Inject auth and api mv into router. +======= +<<<<<<< Updated upstream +2022-08-25 16:36:38.540 - debug: [FS-LOGGER] Init. +2022-08-25 16:36:38.625 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-25 16:36:38.626 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-25 16:59:51.659 - debug: [FS-LOGGER] Init. +2022-08-25 16:59:51.742 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-25 16:59:51.742 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-26 11:12:28.406 - debug: [FS-LOGGER] Init. +2022-08-26 11:12:28.488 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-26 11:12:28.489 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-29 16:04:37.717 - debug: [FS-LOGGER] Init. +2022-08-29 16:04:38.471 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-29 16:04:38.471 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-29 16:12:00.460 - debug: [FS-LOGGER] Init. +2022-08-29 16:12:00.541 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-29 16:12:00.541 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-30 09:43:41.776 - debug: [FS-LOGGER] Init. +2022-08-30 09:43:42.448 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-30 09:43:42.448 - info: [FS-AUTH] Inject auth and api mv into router. +>>>>>>> Stashed changes +<<<<<<< Updated upstream +2022-08-30 16:36:05.846 - debug: [FS-LOGGER] Init. +2022-08-30 16:36:05.939 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-30 16:36:05.939 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-30 16:36:13.025 - debug: [FS-LOGGER] Init. +2022-08-30 16:36:13.105 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-30 16:36:13.105 - info: [FS-AUTH] Inject auth and api mv into router. +======= +>>>>>>> Stashed changes +======= +2022-08-25 14:22:05.295 - debug: [FS-LOGGER] Init. +2022-08-25 14:22:07.381 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-25 14:22:07.382 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-25 14:22:49.419 - debug: [FS-LOGGER] Init. +2022-08-25 14:22:49.501 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-25 14:22:49.501 - info: [FS-AUTH] Inject auth and api mv into router. +>>>>>>> Stashed changes +2022-08-25 14:47:29.269 - debug: [FS-LOGGER] Init. +2022-08-25 14:47:29.347 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-25 14:47:29.347 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-25 14:49:07.574 - debug: [FS-LOGGER] Init. +2022-08-25 14:49:07.652 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-25 14:49:07.653 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-25 14:50:22.022 - debug: [FS-LOGGER] Init. +2022-08-25 14:50:22.096 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-25 14:50:22.096 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-31 20:42:09.758 - debug: [FS-LOGGER] Init. +2022-08-31 20:42:11.288 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-31 20:42:11.288 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-31 21:11:04.831 - debug: [FS-LOGGER] Init. +2022-08-31 21:11:04.913 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-31 21:11:04.913 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-31 21:11:34.545 - debug: [FS-LOGGER] Init. +2022-08-31 21:11:34.625 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-31 21:11:34.625 - info: [FS-AUTH] Inject auth and api mv into router. +>>>>>>> Stashed changes +2022-09-01 01:09:46.801 - debug: [FS-LOGGER] Init. +2022-09-01 01:09:47.410 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-09-01 01:09:47.410 - info: [FS-AUTH] Inject auth and api mv into router. +2022-09-01 16:38:47.964 - error: [FS-ERRHD] +{ + message: 'request aborted', + stack: 'BadRequestError: request aborted\n' + + ' at IncomingMessage.onAborted (f:\\项目\\sihao\\Highways4Good\\api\\node_modules\\raw-body\\index.js:238:10)\n' + + ' at IncomingMessage.emit (events.js:314:20)\n' + + ' at abortIncoming (_http_server.js:533:9)\n' + + ' at socketOnClose (_http_server.js:526:3)\n' + + ' at Socket.emit (events.js:326:22)\n' + + ' at TCP. (net.js:675:12)\n' + + ' at TCP.callbackTrampoline (internal/async_hooks.js:126:14)', + name: 'BadRequestError', + code: 'ECONNABORTED', + expected: 234, + length: 234, + received: 190, + type: 'request.aborted' +} +2022-09-01 16:41:01.852 - error: [FS-ERRHD] +{ + message: 'request aborted', + stack: 'BadRequestError: request aborted\n' + + ' at IncomingMessage.onAborted (f:\\项目\\sihao\\Highways4Good\\api\\node_modules\\raw-body\\index.js:238:10)\n' + + ' at IncomingMessage.emit (events.js:314:20)\n' + + ' at abortIncoming (_http_server.js:533:9)\n' + + ' at socketOnClose (_http_server.js:526:3)\n' + + ' at Socket.emit (events.js:326:22)\n' + + ' at TCP. (net.js:675:12)\n' + + ' at TCP.callbackTrampoline (internal/async_hooks.js:126:14)', + name: 'BadRequestError', + code: 'ECONNABORTED', + expected: 175, + length: 175, + received: 146, + type: 'request.aborted' +} +2022-09-01 17:03:43.087 - debug: [FS-LOGGER] Init. +2022-09-01 17:03:44.040 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-09-01 17:03:44.040 - info: [FS-AUTH] Inject auth and api mv into router. +2022-09-01 17:07:15.155 - debug: [FS-LOGGER] Init. +2022-09-01 17:07:15.234 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-09-01 17:07:15.234 - info: [FS-AUTH] Inject auth and api mv into router. +2022-09-01 17:07:18.088 - error: path: /department, error: TypeError: Cannot read property 'userInfo' of undefined +2022-09-01 17:12:04.208 - debug: [FS-LOGGER] Init. +2022-09-01 17:12:04.286 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-09-01 17:12:04.287 - info: [FS-AUTH] Inject auth and api mv into router. +2022-09-01 17:12:06.685 - debug: [FS-LOGGER] Init. +2022-09-01 17:12:06.763 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-09-01 17:12:06.763 - info: [FS-AUTH] Inject auth and api mv into router. +2022-09-01 17:13:23.786 - error: path: /department, error: TypeError: Cannot read property 'userInfo' of undefined +2022-09-01 17:20:58.071 - error: path: /department, error: TypeError: Cannot read property 'userInfo' of undefined +2022-09-01 17:26:53.932 - error: path: /department, error: TypeError: Cannot read property 'userInfo' of undefined +2022-09-01 18:25:21.474 - debug: [FS-LOGGER] Init. +2022-09-01 18:25:22.990 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-09-01 18:25:22.990 - info: [FS-AUTH] Inject auth and api mv into router. +2022-09-02 15:33:27.837 - debug: [FS-LOGGER] Init. +2022-09-02 15:33:29.977 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-09-02 15:33:29.978 - info: [FS-AUTH] Inject auth and api mv into router. +2022-09-05 14:03:29.503 - debug: [FS-LOGGER] Init. +2022-09-05 14:03:31.226 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-09-05 14:03:31.226 - info: [FS-AUTH] Inject auth and api mv into router. +2022-09-05 15:40:10.680 - debug: [FS-LOGGER] Init. +2022-09-05 15:40:11.273 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-09-05 15:40:11.273 - info: [FS-AUTH] Inject auth and api mv into router. diff --git a/api/package.json b/api/package.json index a7be9266..dabf4b39 100644 --- a/api/package.json +++ b/api/package.json @@ -5,8 +5,8 @@ "main": "server.js", "scripts": { "test": "set DEBUG=true&&\"node_modules/.bin/mocha\" --harmony --reporter spec app/test/*.test.js", - "start": "set NODE_ENV=development&&node server -p 4000 -g postgres://postgres://postgres:123@10.8.30.32:5432/highways4good -f http://localhost:14000 --qnak XuDgkao6cL0HidoMAPnA5OB10Mc_Ew08mpIfRJK5 --qnsk yewcieZLzKZuDfig0wLZ9if9jKp2P_1jd3CMJPSa --qnbkt dev-operational-service --qndmn http://rfkimpwbb.hn-bkt.clouddn.com", - "start:linux": "export NODE_ENV=development&&node server -p 4000 -g postgres://FashionAdmin:123456@10.8.30.39:5432/pm1", + "start": "set NODE_ENV=development&&node server -p 4001 -g postgres://postgres://postgres:123@10.8.30.32:5432/highways4good -f http://localhost:14000 --qnak XuDgkao6cL0HidoMAPnA5OB10Mc_Ew08mpIfRJK5 --qnsk yewcieZLzKZuDfig0wLZ9if9jKp2P_1jd3CMJPSa --qnbkt dev-highways4good --qndmn http://rfkimpwbb.hn-bkt.clouddn.com", + "start:linux": "export NODE_ENV=development&&node server -p 4001 -g postgres://FashionAdmin:123456@10.8.30.39:5432/pm1", "automate": "sequelize-automate -c sequelize-automate.config.js" }, "author": "", diff --git a/scripts/0.0.1/data/工具脚本(无需执行)/data/养护/南昌县农村公路各管养责任单位管养汇总表.xlsx b/scripts/0.0.1/data/工具脚本(无需执行)/data/养护/南昌县农村公路各管养责任单位管养汇总表.xlsx new file mode 100644 index 00000000..779bf870 Binary files /dev/null and b/scripts/0.0.1/data/工具脚本(无需执行)/data/养护/南昌县农村公路各管养责任单位管养汇总表.xlsx differ diff --git a/scripts/0.0.1/data/工具脚本(无需执行)/dataIn.js b/scripts/0.0.1/data/工具脚本(无需执行)/dataIn.js index 9e5c422c..662e6e6f 100644 --- a/scripts/0.0.1/data/工具脚本(无需执行)/dataIn.js +++ b/scripts/0.0.1/data/工具脚本(无需执行)/dataIn.js @@ -12,8 +12,8 @@ try { const pool = new Pool({ user: 'postgres', host: '10.8.30.32', - // database: 'highways4good', - database: 'highways4good_initd', + database: 'highways4good', + // database: 'highways4good_initd', password: '123', port: 5432, }) @@ -26,6 +26,11 @@ try { await client.query('BEGIN') const fileList = [ + // { + // path: ['./data/养护/南昌县农村公路各管养责任单位管养汇总表.xlsx'], + // n: '养护', + // tableName: 'road_maintenance', + // }, // { // path: ['./data/道路/村道第三方.xls'], // n: '道路', @@ -139,14 +144,16 @@ try { let worksheet = workbook.Sheets[firstSheetName]; let res = XLSX.utils.sheet_to_json(worksheet); const keyMap = require(`./${f.n}_数据库表对应.json`); - console.log(keyMap); + console.log("keyMap:", keyMap); for (let d of res) { let insertStr = `INSERT INTO "${f.tableName}" (`; let insertKeys = (f.defaultKey || []).concat([]); let insertValues = (f.defaultValue || []).concat([]); + for (let k in keyMap) { // 没做判重 let v = d[k]; + console.log(v) if (v) { insertKeys.push(keyMap[k]); diff --git a/scripts/0.0.1/data/工具脚本(无需执行)/index.js b/scripts/0.0.1/data/工具脚本(无需执行)/index.js index f4cf143f..7897c188 100644 --- a/scripts/0.0.1/data/工具脚本(无需执行)/index.js +++ b/scripts/0.0.1/data/工具脚本(无需执行)/index.js @@ -63,6 +63,11 @@ try { // 有手动更改 不要轻易再次执行脚本 const fileList = [ + // { + // path: './data/养护/南昌县农村公路各管养责任单位管养汇总表.xlsx', + // n: '养护', + // tableName: 'road_maintenance' + // }, // { // path: './data/道路/县道第三方.xls', // n: '道路', diff --git a/scripts/0.0.1/data/工具脚本(无需执行)/养护_字段对应.json b/scripts/0.0.1/data/工具脚本(无需执行)/养护_字段对应.json new file mode 100644 index 00000000..17d39172 --- /dev/null +++ b/scripts/0.0.1/data/工具脚本(无需执行)/养护_字段对应.json @@ -0,0 +1,21 @@ +{"序号" : "serialNumber", + + "管养责任单位" : "responsibleUnitForManagementAndMaintenance", + + "养护单位" : "maintenanceUnit", + + "管理人员" : "management", + + "工人" : "worker", + + "公益岗位" : "publicWelfarePost", + + "县道" : "countyHighway", + + "乡道 " : "townshipRoad", + + "村道" : "villageRoad", + + "桥梁 " : "bridge" + + } \ No newline at end of file diff --git a/scripts/0.0.1/data/工具脚本(无需执行)/养护_数据字段对应.json b/scripts/0.0.1/data/工具脚本(无需执行)/养护_数据字段对应.json new file mode 100644 index 00000000..4f995388 --- /dev/null +++ b/scripts/0.0.1/data/工具脚本(无需执行)/养护_数据字段对应.json @@ -0,0 +1,21 @@ +{ "serialNumber":"序号", + + "responsibleUnitForManagementAndMaintenance":"管养责任单位", + + "maintenanceUnit":"养护单位", + + "management":"管理人员", + + "worker":"工人", + + "publicWelfarePost":"公益岗位", + + "countyHighway":"县道", + + "townshipRoad":"乡道 ", + + "villageRoad":"村道", + + "bridge":"桥梁 " + + } \ No newline at end of file diff --git a/scripts/0.0.1/data/工具脚本(无需执行)/养护_数据库表对应.json b/scripts/0.0.1/data/工具脚本(无需执行)/养护_数据库表对应.json new file mode 100644 index 00000000..2891d624 --- /dev/null +++ b/scripts/0.0.1/data/工具脚本(无需执行)/养护_数据库表对应.json @@ -0,0 +1,21 @@ +{"序号" : "serial_number", + + "管养责任单位" : "responsible_unit_for_management_and_maintenance", + + "养护单位" : "maintenance_unit", + + "管理人员" : "management", + + "工人" : "worker", + + "公益岗位" : "public_welfare_post", + + "县道" : "county_Highway", + + "乡道 " : "township_Road", + + "村道" : "village_Road", + + "桥梁 " : "bridge" + + } \ No newline at end of file diff --git a/scripts/0.0.1/data/工具脚本(无需执行)/养护_数据脚本对应.sql b/scripts/0.0.1/data/工具脚本(无需执行)/养护_数据脚本对应.sql new file mode 100644 index 00000000..0aef952d --- /dev/null +++ b/scripts/0.0.1/data/工具脚本(无需执行)/养护_数据脚本对应.sql @@ -0,0 +1,44 @@ + + -- 养护 + create table if not exists "road_maintenance" + ( + id serial not null + ); + + create unique index if not exists road_maintenance_id_uindex + on road_maintenance (id); + + alter table road_maintenance + add constraint road_maintenance_pk + primary key (id); + + alter table road_maintenance add Serial_Number varchar(1024); + comment on column road_maintenance.Serial_Number is '序号'; + + alter table road_maintenance add Responsible_Unit_For_Management_And_Maintenance varchar(1024); + comment on column road_maintenance.Responsible_Unit_For_Management_And_Maintenance is '管养责任单位'; + + alter table road_maintenance add Maintenance_Unit varchar(1024); + comment on column road_maintenance.Maintenance_Unit is '养护单位'; + + alter table road_maintenance add Management varchar(1024); + comment on column road_maintenance.Management is '管理人员'; + + alter table road_maintenance add Worker varchar(1024); + comment on column road_maintenance.Worker is '工人'; + + alter table road_maintenance add Public_Welfare_Post varchar(1024); + comment on column road_maintenance.Public_Welfare_Post is '公益岗位'; + + alter table road_maintenance add County_Highway varchar(1024); + comment on column road_maintenance.County_Highway is '县道'; + + alter table road_maintenance add Township_Road varchar(1024); + comment on column road_maintenance.Township_Road is '乡道 '; + + alter table road_maintenance add Village_Road varchar(1024); + comment on column road_maintenance.Village_Road is '村道'; + + alter table road_maintenance add Bridge varchar(1024); + comment on column road_maintenance.Bridge is '桥梁 '; + \ No newline at end of file diff --git a/scripts/0.0.1/schema/2.init_road_maintenance_cost.sql b/scripts/0.0.1/schema/2.init_road_maintenance_cost.sql new file mode 100644 index 00000000..3e489337 --- /dev/null +++ b/scripts/0.0.1/schema/2.init_road_maintenance_cost.sql @@ -0,0 +1,23 @@ + +-- ---------------------------- +-- Table structure for road_maintenance_cost +-- ---------------------------- +DROP TABLE IF EXISTS "public"."road_maintenance_cost"; +CREATE TABLE "public"."road_maintenance_cost" ( + "id" serial NOT NULL, + "mId" int4, + "county_name" varchar(15) COLLATE "pg_catalog"."default", + "road_length_county" float8, + "road_cost_county" numeric(10,2), + "road_length_village" float8, + "road_cost_village" numeric(10,2), + "road_length_township" float8, + "road_cost_township" numeric(10,2), + "maintenance_date" timestamptz(6) +) +; + +-- ---------------------------- +-- Foreign Keys structure for table road_maintenance_cost +-- ---------------------------- +ALTER TABLE "public"."road_maintenance_cost" ADD CONSTRAINT "road_maintenance_cost_mId_fkey" FOREIGN KEY ("mId") REFERENCES "public"."road_maintenance" ("id") ON DELETE NO ACTION ON UPDATE NO ACTION; diff --git a/scripts/1.1.0/data/2.insert_road_maintenance.sql b/scripts/1.1.0/data/2.insert_road_maintenance.sql new file mode 100644 index 00000000..4aa2c8e0 --- /dev/null +++ b/scripts/1.1.0/data/2.insert_road_maintenance.sql @@ -0,0 +1,25 @@ + +-- ---------------------------- +-- Records of road_maintenance +-- ---------------------------- +BEGIN; +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (19, '1', '县交通运输事业发展中心', '南昌旭日公路桥梁工程有限公司', '3', '20', '4', '207.829', NULL, NULL, '26'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (20, '2', '南新乡人民政府', '鑫洲控股集团股份有限公司', '2', '8', '3', NULL, '93.342', '178.356', '12'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (21, '3', '蒋巷镇人民政府', '南昌旭日公路桥梁工程有限公司', '4', '20', '2', NULL, '131.394', '165.29', '46'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (22, '4', '塘南镇人民政府', '江西辉弘欣盛建设工程有限公司', '2', '10', '4', NULL, '67.968', '216.124', '28'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (23, '5', '泾口乡人民政府', '江西悦美环境治理有限公司', NULL, NULL, NULL, NULL, '105.482', '149.772', '7'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (24, '6', '幽兰镇人民政府', '南昌贝之鑫建筑工程有限公司', '1', '10', '2', NULL, '57.919', '146.34', '3'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (25, '7', '塔城乡人民政府', NULL, NULL, NULL, NULL, NULL, '20.591', '87.339', '3'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (26, '8', '武阳镇人民政府', '江西泰冠建设工程有限公司', '3', '4', '2', NULL, '21.363', '105.94', '7'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (27, '9', '八一乡人民政府', '江西然镜建筑工程有限公司', '2', '10', '4', NULL, '19.795', '60.038', '8'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (28, '10', '银三角管委会', NULL, NULL, NULL, NULL, NULL, '10.379', '28.743', '1'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (29, '11', '莲塘镇人民政府', NULL, NULL, NULL, NULL, NULL, '4.583', '80.429', '1'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (30, '12', '富山乡人民政府', '江西聚道建筑工程有限公司', '1', '4', NULL, NULL, '37.003', '34.778', '1'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (31, '13', '冈上镇人民政府', NULL, NULL, NULL, NULL, NULL, '23.67', '107.632', '5'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (32, '14', '广福镇人民政府', '江西泰地建筑工程有限公司', '2', '4', '4', NULL, '17.729', '105.496', '3'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (33, '15', '向塘镇人民政府', NULL, NULL, NULL, NULL, NULL, '57.904', '246.382', '14'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (34, '16', '三江镇人民政府', '庐山白鹿建筑工程有限公司', '2', '7', '1', NULL, '13.119', '71.693', '1'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (35, '17', '黄马乡人民政府', NULL, NULL, NULL, NULL, NULL, '47.703', '138.547', '5'); +INSERT INTO "public"."road_maintenance" ("id", "serial_number", "responsible_unit_for_management_and_maintenance", "maintenance_unit", "management", "worker", "public_welfare_post", "county_highway", "township_road", "village_road", "bridge") VALUES (36, '18', '金湖管理处', '江西聚道建筑工程有限公司', '1', '2', NULL, NULL, '/', '15.161', '/'); +COMMIT; + diff --git a/t --hard b/t --hard new file mode 100644 index 00000000..fe0f68f5 --- /dev/null +++ b/t --hard @@ -0,0 +1,76 @@ +2adac9cb (HEAD -> dev) HEAD@{0}: reset: moving to HEAD^^^ +e5135673 (origin/dev_backup) HEAD@{1}: reset: moving to HEAD^^ +020d4eda (origin/dev) HEAD@{2}: reset: moving to HEAD +020d4eda (origin/dev) HEAD@{3}: reset: moving to HEAD +020d4eda (origin/dev) HEAD@{4}: commit: 12151 +d13b52a9 HEAD@{5}: reset: moving to HEAD +d13b52a9 HEAD@{6}: pull --tags origin dev: Fast-forward +2d649d8e HEAD@{9}: pull --tags origin dev: Merge made by the 'ort' strategy. +1a9dd433 HEAD@{10}: commit: 清除log +a9d12cd8 HEAD@{11}: pull --tags origin dev: Merge made by the 'ort' strategy. +8573588e HEAD@{12}: commit: 五分钟刷新 +39b8e12b HEAD@{13}: pull --tags origin dev: Fast-forward +6aba4d7a HEAD@{14}: pull --tags origin dev: Merge made by the 'ort' strategy. +2e6dc29a HEAD@{15}: commit: 提交 +283a16ae HEAD@{16}: pull --tags origin dev: Merge made by the 'ort' strategy. +590ec5dd HEAD@{17}: commit: 提交 +8eb418ae HEAD@{19}: commit: 日期去掉了日,加上了百分号 +bf01c153 HEAD@{20}: commit: 提交 +76ad089b HEAD@{21}: pull --tags origin dev: Merge made by the 'ort' strategy. +45f58fda HEAD@{22}: commit: 代码提交 +d9079d38 HEAD@{23}: commit: 提交日期处理 +8e0048ac HEAD@{24}: pull --tags origin dev: Fast-forward +c1607d94 HEAD@{25}: pull --tags origin dev: Fast-forward +670dcf18 HEAD@{26}: pull --tags origin dev: Merge made by the 'ort' strategy. +ec02aeb9 HEAD@{27}: commit: nan优化 +974e3c67 HEAD@{28}: commit: 换成定位了 +a61dc4e9 HEAD@{29}: pull --tags origin dev: Fast-forward +d77627f9 HEAD@{30}: pull --tags origin dev: Merge made by the 'ort' strategy. +01ef6b5a HEAD@{31}: commit: 柱体问题解决 +e9424d3e HEAD@{32}: pull --tags origin dev: Merge made by the 'ort' strategy. +c276432d HEAD@{33}: commit: 样式和颜色提交 +45c415e6 (origin/release_0.0.4) HEAD@{34}: pull --tags origin dev: Fast-forward +79723f61 HEAD@{35}: commit: 线条 +9c81764c HEAD@{36}: pull --tags origin dev: Merge made by the 'ort' strategy. +3f398ea2 HEAD@{37}: commit: 提交bug +502b068d HEAD@{38}: pull --tags origin dev: Merge made by the 'ort' strategy. +7a5b8b64 HEAD@{39}: commit: 提交 +aeff1fe5 HEAD@{40}: commit: 路由修改 +11da9451 HEAD@{41}: pull --tags origin dev: Merge made by the 'ort' strategy. +ed7ab5a8 HEAD@{42}: commit: 完成 +06063067 HEAD@{43}: pull --tags origin dev: Merge made by the 'ort' strategy. +755a333f HEAD@{44}: commit: 接口调用 +2b153823 HEAD@{45}: pull --tags origin dev: Merge made by the 'ort' strategy. +f0558530 HEAD@{46}: commit: 路政统计 +50eb042e HEAD@{47}: pull --tags origin dev: Merge made by the 'ort' strategy. +a1dfeddb HEAD@{48}: commit: 提交鼠标移出事件 +5469d9df HEAD@{49}: commit (merge): Merge branch 'dev' of https://gitea.anxinyun.cn/gao.zhiyuan/Highways4Good into dev +49a0b5d7 HEAD@{50}: commit: 提交 +11279671 HEAD@{51}: commit: 提交领导驾驶舱 +3919e2c3 HEAD@{52}: pull --tags origin dev: Merge made by the 'ort' strategy. +b9302fdf HEAD@{53}: commit: 提交代码 +79328f49 HEAD@{54}: commit (merge): Merge branch 'dev' of https://gitea.anxinyun.cn/gao.zhiyuan/Highways4Good into dev +c6a3b352 HEAD@{55}: commit: 提交样式 +14ed5747 HEAD@{56}: pull --tags origin dev: Fast-forward +80e11974 HEAD@{57}: pull --tags origin dev: Merge made by the 'ort' strategy. +a561e62b HEAD@{58}: commit (merge): Merge branch 'dev' of https://gitea.anxinyun.cn/gao.zhiyuan/Highways4Good into dev +163ce6c1 HEAD@{59}: commit: 提交left.less的更改 +4de26fc7 HEAD@{60}: pull: Fast-forward +4a1ae175 HEAD@{61}: pull --tags origin dev: Fast-forward +e7a01d52 HEAD@{62}: commit (merge): Merge branch 'dev' of https://gitea.anxinyun.cn/gao.zhiyuan/Highways4Good into dev +c7e7cd4c HEAD@{63}: commit: 提交领导驾驶舱 +fc3f2a92 HEAD@{64}: commit (merge): Merge branch 'dev' of https://gitea.anxinyun.cn/gao.zhiyuan/Highways4Good into dev +f166aa29 HEAD@{65}: commit: 领导驾驶舱提交代码 +e6030bcf HEAD@{66}: commit: 上传 +b299cd97 HEAD@{67}: pull --tags origin dev: Merge made by the 'ort' strategy. +69e7f3b6 HEAD@{68}: commit: 删除冗余,提交 +a74afb8f HEAD@{69}: commit: 文件 +68c13e99 HEAD@{70}: commit: 文件上传 +dacf49b4 HEAD@{71}: commit: 文件上传 +1190cc0d HEAD@{72}: commit (merge): Merge branch 'dev' of https://gitea.anxinyun.cn/gao.zhiyuan/Highways4Good into dev +0c57a227 HEAD@{73}: commit: 头部样式完成 +8ab4f5f2 HEAD@{74}: pull --tags origin dev: Merge made by the 'ort' strategy. +50714cbf HEAD@{75}: commit: 公共组件图标样式修改 +34413ac0 HEAD@{76}: commit: test +eee5aedf HEAD@{77}: commit: test +cbdfefa3 (master) HEAD@{79}: clone: from https://gitea.anxinyun.cn/gao.zhiyuan/Highways4Good.git diff --git a/web/Dockerfile b/web/Dockerfile index 7bda219f..8c6b5d02 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -1,25 +1,12 @@ -FROM registry.cn-hangzhou.aliyuncs.com/fs-devops/node:12-dev as builder +#FROM node:12-alpine +FROM repository.anxinyun.cn/base-images/nodejs12:20.10.12.2 -COPY . /var/app +MAINTAINER liuxinyi "liu.xinyi@free-sun.com.cn" -WORKDIR /var/app - -EXPOSE 8080 - -RUN npm config set registry=http://10.8.30.22:7000 -RUN echo "{\"time\":\"$BUILD_TIMESTAMP\",\"build\": \"$BUILD_NUMBER\",\"revision\": \"$SVN_REVISION_1\",\"URL\":\"$SVN_URL_1\"}" > version.json -RUN npm cache clean -f -RUN rm -rf package-lock.json -RUN npm install --registry http://10.8.30.22:7000 -RUN npm run build -RUN rm -rf client/src -RUN rm -rf node_modules -RUN npm install --production --registry http://10.8.30.22:7000 +COPY . /var/app -FROM registry.cn-hangzhou.aliyuncs.com/fs-devops/node:12 - -COPY --from=builder --chown=node /var/app /home/node/app +WORKDIR /var/app -WORKDIR /home/node/app +EXPOSE 5000 -CMD ["node", "server.js"] \ No newline at end of file +ENTRYPOINT [ "node", "server.js" ] \ No newline at end of file diff --git a/web/client/assets/images/zhexian.png b/web/client/assets/images/zhexian.png new file mode 100644 index 00000000..46052054 Binary files /dev/null and b/web/client/assets/images/zhexian.png differ diff --git a/web/client/assets/images/zhuzhuang.png b/web/client/assets/images/zhuzhuang.png new file mode 100644 index 00000000..ba5d36d1 Binary files /dev/null and b/web/client/assets/images/zhuzhuang.png differ diff --git a/web/client/src/sections/fillion/actions/infor.js b/web/client/src/sections/fillion/actions/infor.js index 18b26d29..06afa907 100644 --- a/web/client/src/sections/fillion/actions/infor.js +++ b/web/client/src/sections/fillion/actions/infor.js @@ -1,5 +1,6 @@ import { basicAction } from '@peace/utils' import { ApiTable } from '$utils' +import { Request } from '@peace/utils' export function getDepMessage() { return dispatch => basicAction({ @@ -162,7 +163,7 @@ export function getHighways(query) { query: query, actionType: 'GET_HIGHWAYS', url: ApiTable.getHighways, - msg: { error: '获取路政信息失败' }, + msg: { error: '获取设施统计信息失败' }, }); } @@ -173,7 +174,7 @@ export function putHighways(query) { data: query, actionType: 'GET_HIGHWAYS', url: ApiTable.putHighways, - msg: { option: '编辑路政信息' }, + msg: { option: '编辑设施统计信息' }, }); } @@ -389,4 +390,48 @@ export function putShippingList(query) { url: ApiTable.putShippingList, msg: { option: '编辑货运信息' }, }); +} +//获取管养单位概况 +export function getCustodyunit() { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + actionType: 'GET_CUSTODY_UNIT', + url: ApiTable.getCustodyunit, + msg: { error: '获取管养单位概况失败' }, + reducer: { name: 'roadMaintenances_management' } + }); +} +export function getCustodyunitOne(query) { + return dispatch => basicAction({ + type: 'get', + query:query, + dispatch: dispatch, + actionType: 'GET_CUSTODY_UNIT_ONE', + url: ApiTable.getCustodyunit, + msg: { error: '获取管养单位概况失败' }, + // reducer: { name: 'roadMaintenances_management' } + }); +} +export function postCustodyunit(query) { + return dispatch => basicAction({ + type: 'post', + data: query, + dispatch: dispatch, + actionType: 'POST_CUSTODY_UNIT', + url: ApiTable.postCustodyunit, + msg: { option: '编辑管养单位概况' }, + // reducer: { name: 'roadMaintenances' } + }); +} +export function getxiuyangas(query) { + return dispatch => basicAction({ + type: 'get', + query, + dispatch: dispatch, + actionType: 'GET_XIUYANG', + url: ApiTable.getXiuyang, + msg: { error: '获取信息失败' }, + reducer: { name: 'xiuyang' } + }); } \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/bridgeTable.js b/web/client/src/sections/fillion/components/bridgeTable.js index 1e22bc37..deb7f974 100644 --- a/web/client/src/sections/fillion/components/bridgeTable.js +++ b/web/client/src/sections/fillion/components/bridgeTable.js @@ -1825,7 +1825,6 @@ const BrideTable = (props) => { total: res.payload.data ? res.payload.data.count : 0 } } - }} search={{ defaultCollapsed: false, diff --git a/web/client/src/sections/fillion/components/highways/guanli.js b/web/client/src/sections/fillion/components/highways/guanli.js new file mode 100644 index 00000000..3dda4694 --- /dev/null +++ b/web/client/src/sections/fillion/components/highways/guanli.js @@ -0,0 +1,113 @@ +import React, { useEffect, useState } from 'react'; +import { connect } from 'react-redux'; +import { Form, Spin, Table } from 'antd'; +import { ModalForm, ProForm, ProFormText, ProFormSelect } from '@ant-design/pro-form'; +import { putOperaTional, postCustodyunit, getCustodyunitOne,getxiuyangas } from "../../actions/infor" + + +import _ from 'lodash' + +const Guanli = (props) => { + const { visible, onVisibleChange, typecard, rewkeys, recortd, dispatch, setRecortd, setDelet } = props + const [success, setSuccess] = useState() + useEffect(() => { + return () => { + setRecortd() + } + }, [setRecortd]) + return ( + + {/* { + newlysay ? */} + { + setDelet(values) + const query = { ...values, id: recortd?.id, serialNumber: recortd?.id } + dispatch(postCustodyunit(query)).then((res) => { + if (res.success === true) { + let date = { fourceUpdate: false } + dispatch(getxiuyangas(date)).then((res) => { + }) + } + }) + return true + }} + initialValues={recortd} + > + + + + + + + + ) +} +function mapStateToProps(state) { + const { depMessage } = state; + const pakData = (dep) => { + return dep.map((d) => { + return { + title: d.name, + value: d.id, + children: pakData(d.subordinate) + } + }) + } + let depData = pakData(depMessage.data || []) + return { + loading: depMessage.isRequesting, + depData, + }; +} +export default connect(mapStateToProps)(Guanli); \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/highways/highwaysdata.js b/web/client/src/sections/fillion/components/highways/highwaysdata.js index 70d10754..d948dc7f 100644 --- a/web/client/src/sections/fillion/components/highways/highwaysdata.js +++ b/web/client/src/sections/fillion/components/highways/highwaysdata.js @@ -1,14 +1,14 @@ import React, { useEffect, useState } from 'react'; import { connect } from 'react-redux'; import { Form, Spin, Table } from 'antd'; -import { ModalForm, ProForm, ProFormText,ProFormSelect } from '@ant-design/pro-form'; -import { putOperaTional,putHighways,putShippingList } from "../../actions/infor" -import _ from 'lodash' +import { ModalForm, ProForm, ProFormText, ProFormSelect } from '@ant-design/pro-form'; +import { putOperaTional, putHighways } from "../../actions/infor" +import _ from 'lodash' const HightModal = (props) => { - const { visible, onVisibleChange, typecard, rewkeys, recortd, dispatch, setRecortd,setDelet } = props - const [success,setSuccess]=useState() - + const { visible, onVisibleChange, typecard, rewkeys, recortd, dispatch, setRecortd, setDelet } = props + const [success, setSuccess] = useState() + useEffect(() => { return () => { setRecortd() @@ -26,69 +26,62 @@ const HightModal = (props) => { onFinish={(values) => { if (rewkeys === 'passenger') { setDelet(values) - const query = { ...values, id:recortd?.id } - dispatch(putOperaTional(query)).then((res) => { - setSuccess(res.success) - }) - return true - - } if (rewkeys === 'freight') { - setDelet(values) - const query = { ...values, id:recortd?.id } - dispatch(putShippingList(query)).then((res) => { - setSuccess(res.success) - }) - return true - + const query = { ...values, id: recortd?.id } + dispatch(putOperaTional(query)).then((res) => { + setSuccess(res.success) + }) + return true + } if (rewkeys === 'highways') { setDelet(values) - - const query = { ...values, id:recortd?.id } + + const query = { ...values, id: recortd?.id } dispatch(putHighways(query)).then((res) => { setSuccess(res.success) }) return true - - } - + + } + }} initialValues={recortd} > {/* {typecard == 'compile' ? */} - - - { - // return event.target.value.replace(/\D/g,'') - // } - ]} - - /> + + + { + // return event.target.value.replace(/\D/g,'') + // } + ]} + + /> - - {/* : + + {/* : vfdscfd } */} diff --git a/web/client/src/sections/fillion/components/highwaysTable.js b/web/client/src/sections/fillion/components/highwaysTable.js index cc47a244..2141a1c0 100644 --- a/web/client/src/sections/fillion/components/highwaysTable.js +++ b/web/client/src/sections/fillion/components/highwaysTable.js @@ -1,37 +1,53 @@ -import React, { useEffect, useState,useRef } from 'react'; + +import React, { useEffect, useState, useRef } from 'react'; import { connect } from 'react-redux'; -import { Spin, Button, Popconfirm, Badge } from 'antd'; +import { Spin, Button, Popconfirm } from 'antd'; import ProTable from '@ant-design/pro-table'; import './protable.less' -import { getHighways } from "../actions/infor" +import { getRoadway, getHighways, getCustodyunit, delProject } from "../actions/infor" import HightModal from './highways/highwaysdata'; +import Guanli from './highways/guanli'; - -const HigwaysTable = (props) => { - const { dispatch, user, } = props +const TransporTationTable = (props) => { + const { dispatch, user, depData, depMessage, depLoading } = props const [rowSelected, setRowSelected] = useState([]) + const [sitename, setSitename] = useState()//名称 const [counts, setCounts] = useState()//shuju + const [modalVisible, setModalVisible] = useState(false); const [modalVisibleyilan, setModalVisibleyilan] = useState(false); + const [modalVisibleyilans, setModalVisibleyilans] = useState(false); + const [modalRecord, setModalRecord] = useState(); const [typecard, setTypecard] = useState(); + const [activeKey, setActiveKey] = useState('tab1'); const [recortd, setRecortd] = useState() - const [sitename, setSitename] = useState()//桥梁名称 + const [whichofits, setWhichofits] = useState('sheshi') const [delet, setDelet] = useState() - + const [differentiate, setDifferentiate] = useState('road') + const [grade, setGrade] = useState('县') const ref = useRef() - useEffect(() => { ref.current.reload() }, [ delet]) -//打开弹窗 -const hightModal = (type, record) => { - setModalVisibleyilan(true); - // setModalType(type); - if (type == 'edit') { - setModalRecord(record); - } else { - setModalRecord(null); + useEffect(() => { ref.current.reload() }, [whichofits, delet]) + //打开弹窗 + const hightModal = (type, record) => { + setModalVisibleyilan(true); + // setModalType(type); + if (type == 'edit') { + setModalRecord(record); + } else { + setModalRecord(null); + } + } + const yilanModal = (type, record) => { + setModalVisibleyilans(true); + // setModalType(type); + if (type == 'edit') { + setModalRecord(record); + } else { + setModalRecord(null); + } } -} - const columns = - [ + const columns = { + tab1: [ { title: '类型', dataIndex: 'placeName', @@ -45,7 +61,7 @@ const hightModal = (type, record) => { setSitename(value.currentTarget.value) }, placeholder: '请输入类型进行搜索', - getPopupContainer: (triggerNode) => triggerNode.parentNode, + }, render: (dom, record) => { return record.name @@ -74,32 +90,213 @@ const hightModal = (type, record) => { fixed: 'right', render: (dom, record) => { return
+ + } + }, + + ], + tab2: [ + { + title: '管养责单位', + dataIndex: 'placeName', + fixed: 'left', + width: 120, + options: 1, + search: false, + backgroundColor: "#ffffff", + fieldProps: { + onChange: (value, cs) => { + setSitename(value.currentTarget.value) + }, + placeholder: '请输入项目名称进行搜索', + + }, + render: (dom, record) => { + return record.responsibleUnitForManagementAndMaintenance + }, + }, + { + title: '养护单位', + search: false, + dataIndex: 'time1', + valueType: 'dateRange', + + // fixed: 'left', + width: 120, + render: (dom, record) => { + return record.maintenanceUnit + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '管理人员(人)', + search: false, + dataIndex: 'time2', + valueType: 'dateRange', + // align: 'right', + width: 120, + render: (dom, record) => { + return record.management + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '工人(人)', + search: false, + dataIndex: 'time3', + valueType: 'dateRange', + + + + width: 120, + render: (dom, record) => { + return record.worker + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '公益岗位(人)', + search: false, + dataIndex: 'time4', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.publicWelfarePost + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '县道(km)', + search: false, + dataIndex: 'time5', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.countyHighway + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '乡道(km)', + search: false, + dataIndex: 'time6', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.townshipRoad + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '村道(km)', + search: false, + dataIndex: 'time7', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.villageRoad + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '桥梁(座)', + search: false, + dataIndex: 'time8', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.bridge + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '操作', + dataIndex: 'creatTime', + valueType: 'dateTimeRange', + hideInSearch: true, + width: 160, + fixed: 'right', + render: (dom, record) => { + return
} }, - + ] + } return (
setActiveKey(key), + items: [ + { + key: 'tab1', + label: { + setWhichofits('sheshi') + setDifferentiate('bridge') + }}>设施统计{activeKey === 'tab1'}, + }, + { + key: 'tab2', + label: { + setWhichofits('guanli') + setDifferentiate('project') + }}>管养统计{activeKey === 'tab2'}, + }, + + ], + }, + }} form={{ - submitter:false + submitter: false }} - // ref={c => { finishedProductTable = c; }} + scroll={{ x: 800 }} + options={false} + ref={c => { finishedProductTable = c; }} style={{ width: "100% ", overflow: "auto", height: '760px' }} rowKey='id' onReset={(v) => { - setSitename('') + setSitename('') }} // rowSelection={{ // selectedRowKeys: rowSelected, @@ -107,24 +304,51 @@ const hightModal = (type, record) => { // setRowSelected(selectedRowKeys); // }, // }} - columns={columns} - - dataSource={counts || []} + columns={columns[activeKey]} + dataSource={counts || []} request={async (params) => { - const query = { - name:sitename - } - setRowSelected([]); - const res = await dispatch(getHighways(query)); - setCounts(res.payload.data) - return { - ...res, - total: res.payload.data ? res.payload.data.count : 0 + console.log(whichofits) + if (whichofits == 'sheshi') { + const query = { + } + setRowSelected([]); + const res = await dispatch(getHighways(query)); + // console.log(res) + + setCounts(res.payload.data) + return { + ...res, + total: res.payload.data ? res.payload.data.count : 0 + } + } if (whichofits == 'guanli') { + const query = { + + } + setRowSelected([]); + const res = await dispatch(getCustodyunit(query)); + setCounts(res.payload.data) + return { + ...res, + total: res.payload.data ? res.payload.data.count : 0 + } } }} + search={{ + defaultCollapsed: false, + optionRender: (searchConfig, formProps, dom) => [ + ...dom.reverse(), + // { props.exports(rowSelected,grade,differentiate) }}> + // + // + ], + }} > -
- {modalVisibleyilan ? + + {modalVisibleyilan ? { setRecortd={setRecortd} setDelet={setDelet} /> : ''} + {modalVisibleyilans ? : ''}
) } +const data = [ + { name: "管养责任单位", type: 'responsibleUnitForManagementAndMaintenance' }, + { name: "养护单位", type: 'maintenanceUnit' }, + { name: "管理人员", type: 'management' }, + { name: "工人", type: 'worker' }, + { name: "公益岗位", type: 'publicWelfarePost' }, + { name: "县道", type: 'countyHighway' }, + { name: "乡道", type: 'townshipRoad' }, + { name: "村道", type: 'villageRoad' }, + { name: "桥梁", type: 'bridge' }, +] function mapStateToProps(state) { const { auth, depMessage } = state; const pakData = (dep) => { @@ -157,4 +402,4 @@ function mapStateToProps(state) { depData, }; } -export default connect(mapStateToProps)(HigwaysTable); \ No newline at end of file +export default connect(mapStateToProps)(TransporTationTable); \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/transportationTable.js b/web/client/src/sections/fillion/components/transportationTable.js index 3b7a7c8f..35e4cd7a 100644 --- a/web/client/src/sections/fillion/components/transportationTable.js +++ b/web/client/src/sections/fillion/components/transportationTable.js @@ -3785,7 +3785,10 @@ const TransporTationTable = (props) => { columns={columns[activeKey]} dataSource={counts || []} request={async (params) => { + console.log(whichofits) if (whichofits == '县') { + console.log('differentiate','我我我我吧') + const query = { level: '县', road: sitename diff --git a/web/client/src/sections/fillion/nav-item.js b/web/client/src/sections/fillion/nav-item.js index bc72281e..89d0770b 100644 --- a/web/client/src/sections/fillion/nav-item.js +++ b/web/client/src/sections/fillion/nav-item.js @@ -15,7 +15,7 @@ export function getNavItem(user, dispatch) { 桥梁管理 - 路政管理 + 管养管理 运政管理 diff --git a/web/client/src/sections/fillion/routes.js b/web/client/src/sections/fillion/routes.js index 175b336c..abdfb6ab 100644 --- a/web/client/src/sections/fillion/routes.js +++ b/web/client/src/sections/fillion/routes.js @@ -44,7 +44,7 @@ export default [{ key: 'fillionhighways', menuSelectKeys: ['fillionhighways'], component: HigHways, - breadcrumb: '路政管理', + breadcrumb: '管养管理', }, { path: '/operational', key: 'fillionoperational', diff --git a/web/client/src/sections/quanju/actions/example.js b/web/client/src/sections/quanju/actions/example.js index 9f1b02df..cab22344 100644 --- a/web/client/src/sections/quanju/actions/example.js +++ b/web/client/src/sections/quanju/actions/example.js @@ -145,4 +145,15 @@ export function getRoadMaintenanceList() { msg: { error: '获取道路养护列表失败' }, reducer: { name: 'roadMaintenances' } }); +} +//获取管养单位概况 +export function getCustodyunit() { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + actionType: 'GET_CUSTODY_UNIT', + url: ApiTable.getCustodyunit, + msg: { error: '获取管养单位概况失败' }, + // reducer: { name: 'roadMaintenances' } + }); } \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/conserve/action/index.js b/web/client/src/sections/quanju/containers/footer/conserve/action/index.js index aca6e2bc..26bb825e 100644 --- a/web/client/src/sections/quanju/containers/footer/conserve/action/index.js +++ b/web/client/src/sections/quanju/containers/footer/conserve/action/index.js @@ -25,3 +25,24 @@ export function getRoadMaintenances() { reducer: { name: 'RoadMaintenances' } }); } +export function getxiuyang(query) { + return dispatch => basicAction({ + type: 'get', + query, + dispatch: dispatch, + actionType: 'GET_XIUYANG', + url: ApiTable.getXiuyang, + msg: { error: '获取信息失败' }, + reducer: { name: 'xiuyang' } + }); +} +export function getMaintenance() { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + actionType: 'GET_MAINTENANCE', + url: ApiTable.getMaintenance, + msg: { error: '获取养护费用信息失败' }, + // reducer: { name: 'xiuyang' } + }); +} \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/conserve/index.js b/web/client/src/sections/quanju/containers/footer/conserve/index.js index 105995f2..eeb36b55 100644 --- a/web/client/src/sections/quanju/containers/footer/conserve/index.js +++ b/web/client/src/sections/quanju/containers/footer/conserve/index.js @@ -2,15 +2,17 @@ import React, { useEffect, useState } from 'react' import Left from './left' import Right from './right' import { connect } from 'react-redux' +import moment from 'moment'; import { getdaolutongji } from '../../../actions/example' -import { getHighways, getRoadMaintenances } from './action' +import { getHighways, getRoadMaintenances, getxiuyang,getMaintenance } from './action' const Conserve = (props) => { - const [roadData, setRoadData] = useState() const [highwaysData, setHighwaysData] = useState() const [roadMaintenances, setRoadMaintenances] = useState() + const [data, setData] = useState() + const [shuju, setShuju] = useState() const [loading, setLoading] = useState(true) const { dispatch } = props @@ -19,19 +21,28 @@ const Conserve = (props) => { setLoading(false) setRoadData(res.payload.data || {}) }) - dispatch(getHighways()).then(res =>{ + dispatch(getHighways()).then(res => { setHighwaysData(res.payload.data || []) }) - dispatch(getRoadMaintenances()).then(res =>{ + dispatch(getRoadMaintenances()).then(res => { setRoadMaintenances(res.payload.data || []) }) + dispatch(getxiuyang()).then(res => { + setData(res.payload.data.filter(item => { + if (moment(item.maintenanceDate).format("MM") == (new Date().getMonth() < 10 ? "0" + new Date().getMonth() : new Date().getMonth())) { + return item + } + })) + }) + dispatch(getMaintenance()).then(res => { + setShuju(res.payload.data) + }) }, []) - return ( -
- - -
+
+ + +
) } function mapStateToProps(state) { diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left.js b/web/client/src/sections/quanju/containers/footer/conserve/left.js index dfc40a1a..c4ce633f 100644 --- a/web/client/src/sections/quanju/containers/footer/conserve/left.js +++ b/web/client/src/sections/quanju/containers/footer/conserve/left.js @@ -4,11 +4,11 @@ import LeftCenter from './left/left-center' import LeftTop from './left/left-top' const Left = (props) => { - const { roadData, loading } = props + const { roadData, loading, data, shuju } = props return (
- +
) diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left/Lb.js b/web/client/src/sections/quanju/containers/footer/conserve/left/Lb.js new file mode 100644 index 00000000..389f3e4b --- /dev/null +++ b/web/client/src/sections/quanju/containers/footer/conserve/left/Lb.js @@ -0,0 +1,101 @@ +import React, { useState, useEffect } from 'react' +import Module from '../../../public/module' +import { Spin } from 'antd' +import Lun from "../../leadership/right/lunbo" +import "../../leadership/right/left.less" +import { getZhichaodata } from "../../../../actions/example" + +const Lefttbottoms = (props) => { + const { data } = props + + const style = { height: "28%", marginTop: "4%" } + const [beijing, setBeijing] = useState() + const [rightDatas, setrightDatas] = useState([]) + const [nums, setNums] = useState([]) + const [num, setNum] = useState() + const datas=data?.filter((item)=>{ +return item.maintenanceUnit!==null + }) + // const requestRightDatas = async () => { + // const res = await dispatch(getZhichaodata()) + // var pattern = /[\u4e00-\u9fa5]*/; + // let d = res.payload.data?.overSpeeddata?.filter((item, index) => { + // return /.*[\u4e00-\u9fa5_a-zA-Z]+.*$/.test(item.processingTime) == false + // }) + // console.log(res); + // d.map((item, index) => { + // if (parseInt(item.processingTime.match(/([^.]*)$/)[0]) < 10) { + // return item.processingTime = `${(item.processingTime.match(/^([^.]*)(.[^.]*)/)[0])}.0${parseInt(item.processingTime.match(/([^.]*)$/)[0])}` + // } + // }) + // d.sort((a, b) => b.processingTime.localeCompare(a.processingTime)) + // // setrightDatas(res.payload.data) + // setdata(d) + // } + // useEffect(() => { + // const zhichaodata = dispatch(getZhichaodata()).then((res) => { + // setNums(res.payload?.data?.processed) + + // }) + // requestRightDatas() + // }, []) + const renderBody = () => { + return ( +
+ {datas?.map((item, index) => { + return
  • { + setBeijing(index) + setNum(index) + }} onMouseLeave={() => { + setBeijing() + setNum() + }}> + {beijing == index ? : ""} +
    {item.maintenanceUnit}
    +
    {item.management||'--'}
    +
    {item.worker||'--'}
    +
    {item.publicWelfarePost||'--'}
    + {/*
    {item.qiao}
    */} + {/* { + num == index ?
    + +
    + +

    {item.overrunRate ? item.overrunRate + "%" : "--"}

    +

    超限

    +
    +
    +

    车牌号{item.danwei}

    +

    检测点{item.xian}

    +

    处罚{item.xiang}

    +

    日期{item.cun}

    +

    日期{item.qiao}

    +
    +
    : "" + } */} +
  • + }) + + } +
    + ) + } + return ( + <> +
    +

    养护单位

    +

    管理人员(人)

    +

    工人(人)

    +

    公益岗位(人)

    + {/*

    桥梁(座)

    */} +
    + + + ) +} +export default Lefttbottoms \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left/left-bottom.js b/web/client/src/sections/quanju/containers/footer/conserve/left/left-bottom.js index 5e08c669..9f0026e7 100644 --- a/web/client/src/sections/quanju/containers/footer/conserve/left/left-bottom.js +++ b/web/client/src/sections/quanju/containers/footer/conserve/left/left-bottom.js @@ -1,6 +1,9 @@ -import React from 'react' +import React,{useState,useEffect} from 'react' import Module from '../../../public/module' import PieChart from '../chart/pie-chart'; +import Lefttbottoms from "./Lb" +import { getCustodyunit } from "../../../../actions/example" +import { connect } from 'react-redux'; let color = [ "rgba(7,185,254,1)", @@ -13,6 +16,14 @@ let underColor = [ "rgba(4,251,240,0.5)", ] const LeftBottom = (props) => { + const { dispatch, actions, user, loading } = props + const [data,setStata]=useState() + useEffect(()=>{ + dispatch(getCustodyunit()).then((res)=>{ + setStata(res.payload.data) + }) + + },[true]) const style = { height: "31%", marginTop: "3%" } const { roadData } = props const list = roadData?.greenMileage || {} @@ -28,13 +39,13 @@ const LeftBottom = (props) => { } }) - let colorList = value?.map(c =>c.colorList) - let underColorList = value?.map(c =>c.underColorList) + let colorList = value?.map(c => c.colorList) + let underColorList = value?.map(c => c.underColorList) return ( <> - - + {/* { textLeft={'20%'} numLeft={'14.5%'} underColorList={underColorList} - /> + /> */} + ) } -export default LeftBottom \ No newline at end of file +function mapStateToProps(state) { + const { auth } = state; + return { + user: auth.user, + + } +} +export default connect(mapStateToProps)(LeftBottom) \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left/left-center.js b/web/client/src/sections/quanju/containers/footer/conserve/left/left-center.js index 17c8cdce..6a1180b4 100644 --- a/web/client/src/sections/quanju/containers/footer/conserve/left/left-center.js +++ b/web/client/src/sections/quanju/containers/footer/conserve/left/left-center.js @@ -1,239 +1,36 @@ import { Col, Row } from 'antd' import React from 'react' -import { useEffect, useRef } from 'react' +import { useEffect, useRef, useState } from 'react' import Module from '../../../public/module' import * as echarts from 'echarts'; +import ZheXian from "./zhexin" +import PieChart from "./shituzujian" +import Lunbo from './lunbo'; const LeftCenter = (props) => { + const { data, shuju } = props const style = { height: "31%", marginTop: "3%" } - const chartRef = useRef(null); - const { roadData } = props - const data = roadData?.greenMileage || {} - const grad = Object.keys(data).map(g => g + '级可绿化里程') || [] - const value = Object.values(data)?.map(s => s.canBeGreen.toFixed(3)) - let totalData = value?.reduce((pre, cur) => Number(pre) + Number(cur), 0) || 0 - let max = Math.max.apply(Math, value) + 10 || 0 - - useEffect(() => { - let chartInstance = echarts.init(chartRef.current); - let colorArray = [ - { - top: "#07B9FE", - bottom: "#10274B", - }, - { - top: "#1978E5", - bottom: " #10274B", - }, - { - top: "#1978E5", - bottom: "#10274B", - }, - ]; - const option = { - tooltip: { - show: true, - trigger: "axis", - axisPointer: { - type: "none", - }, - formatter: "{b}:{c}", - }, - grid: { - left: "5%", - top: "12%", - right: "1%", - bottom: "8%", - width: '100%', - containLabel: true, - }, - - xAxis: { - type: "value", - show: true, - position: "bottom", - axisTick: { - show: true, - interval: 2, - lineStyle: { - color: "rgba(176,215,255,0.25)", - // type: "dashed", - }, - }, - axisLine: { - show: false, - lineStyle: { - color: "rgba(216,240,255,0.8000)", - }, - }, - axisLabel: { - interval: 2 - }, - - splitLine: { - show: true, - lineStyle: { - color: "rgba(176,215,255,0.25)", - type: "dashed", - }, - }, - }, - yAxis: [ - { - type: "category", - axisTick: { - show: false, - alignWithLabel: false, - length: 5, - }, - splitLine: { - //网格线 - show: false, - }, - inverse: true, //排序 - axisLine: { - show: false, - lineStyle: { - color: "rgba(176,215,255,0.8)", - }, - }, - zlevel: 100, - data: grad, - }, - { - type: "category", - axisTick: { - show: false, - alignWithLabel: false, - length: 5, - }, - splitLine: { - //网格线 - show: false, - }, - axisLabel: { - show: true, - backgroundColor: { - image: '/assets/images/quanju/kelvhua_bdbg.png', - }, - width: 70, - height: 22, - color: '#D8F0FF', - margin: 40, - verticalAlign: 'middle', - align: 'center', - textShadowColor: '#1AD0FF', - textShadowBlur: 6, - fontSize: 14 - // formatter:(f) =>{console.log('f:',f);} - }, - inverse: true, //排序 - axisLine: { - show: false, - lineStyle: { - color: "rgba(176,215,255,0.8)", - }, - - }, - data: value, - }, - ], - series: [ - { - name: '背景', - type: "bar", - barWidth: 3, - barGap: "100%", - barCategoryGap: "50%", - color: "#15356E", - data: [max, max, max], - tooltip: { - show: false, - }, - }, - { - name: "", - type: "bar", - zlevel: 1, - barWidth: 3, - barGap: "-100%", - barCategoryGap: "50%", - data: value, - label: { - show: true, - position: 'right', // 位置 - fontSize: 12, - lineHeight: 13, - distance: -2, - verticalAlign: "middle", - formatter: [ - '{a| }', - ].join(''), // 这里是数据展示的时候显示的数据 - rich: { - a: { - backgroundColor: { - image: '/assets/images/quanju/circle2.png' - }, - width: 15, - height: 15, - align: 'left', - verticalAlign: "center", - } - } - }, - itemStyle: { - normal: { - show: true, - color: function (params) { - return { - type: "linear", - colorStops: [ - { - offset: 0, - color: colorArray[params.dataIndex].bottom, - }, - { - offset: 1, - color: colorArray[params.dataIndex].top, - }, - - - ], - // globalCoord: false, - }; - }, - barBorderRadius: 70, - borderWidth: 0, - borderColor: "#333", - }, - }, - emphasis: { - disabled: true //禁止移入柱子改变颜色 - } - }, - ], - }; - chartInstance.setOption(option); - window.addEventListener('resize', () => { - if (chartInstance) { - chartInstance.resize() - } - }) - }, [roadData]); + // const chartRef = useState(); + // const { roadData } = props + const [flag, setFlag] = useState(true) + // const [colorFlage, setColorFlage] = useState(true) return ( <> - - - - - icon - 可绿化里程总数 - - {totalData.toFixed(3) || 0} - -
    - + +
    { + setFlag(false) + }} style={{ position: "absolute", top: "38.5%", left: "80%", width: "50px", height: "20px", background: "linear-gradient(270deg, rgba(15,74,159,0) 0%, rgba(17,75,160,0.95) 100%)", float: "right", textAlign: "center", zIndex: 100, marginRight: "4%", borderLeft: "solid 2px #6E7A83" }} > + {/* */} +

    累计

    +
    { + setFlag(true) + }} style={{ position: "absolute", width: "50px", left: "60%", top: "38.5%", height: "20px", background: "linear-gradient(270deg, rgba(15,74,159,0) 0%, rgba(17,75,160,0.95) 100%)", float: "right", textAlign: "center", zIndex: 100, marginRight: "2%", borderLeft: "solid 2px #6E7A83", }}> + {/* */} +

    上月

    + { + flag ? : + }
    ) diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left/left-top.js b/web/client/src/sections/quanju/containers/footer/conserve/left/left-top.js index 944fdf81..e9ac19d8 100644 --- a/web/client/src/sections/quanju/containers/footer/conserve/left/left-top.js +++ b/web/client/src/sections/quanju/containers/footer/conserve/left/left-top.js @@ -1,202 +1,213 @@ -import React, { useEffect, useRef } from 'react'; +import React, { useEffect, useRef,useState } from 'react'; import Module from '../../../public/module' import * as echarts from 'echarts'; import { Badge, Spin } from 'antd'; +import Leftbottom from "./lunbozujian" +import { getCustodyunit } from "../../../../actions/example" +import { connect } from 'react-redux'; const LeftTop = (props) => { - const seasonChartRef = useRef(null); - - const frequentlyChartRef = useRef(null); - const { roadData,loading } = props - let total = roadData?.curingPeriod?.frequent + roadData?.curingPeriod?.season - useEffect(() => { - let chartInstance = echarts.init(seasonChartRef.current); - const seasonOption = { - tooltip: { - show: true - }, - title: [ - { - text: "季节性", - x: "center", - top: "55%", - textStyle: { - color: "#E9F7FF", - fontSize: 14, - }, - }, - { - text: roadData?.curingPeriod?.season || 0, - x: "center", - y: "35%", - textStyle: { - fontSize: "30", - color: "#FFFFFF", - fontFamily: "YouSheBiaoTiHei", - }, - }, - ], - polar: { - radius: ["60%", "68%"], - center: ["50%", "50%"], - }, - grid: { - left: "5%", - top: "12%", - right: "1%", - bottom: "8%", - containLabel: true, - }, - angleAxis: { - max: total || 0, - show: false, - }, - radiusAxis: { - type: "category", - show: true, - axisLabel: { - show: false, - }, - axisLine: { - show: false, - }, - axisTick: { - show: false, - }, - }, - series: [ - { - name: "", - type: "bar", - roundCap: true, - barWidth: 30, - showBackground: true, - data: [{ value: roadData?.curingPeriod?.season || 0, name: '季节性' }], - coordinateSystem: "polar", - itemStyle: { - normal: { - color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [ - { - offset: 0, - color: "#AAC8FF", - }, - { - offset: 1, - color: "#0041BB", - }, - ]), - }, - }, - }, - ], - }; - chartInstance.setOption(seasonOption); - window.addEventListener('resize', () => { - if (chartInstance) { - chartInstance.resize() - } + const { dispatch, actions, user, loading } = props +const [data,setStata]=useState() + useEffect(()=>{ + dispatch(getCustodyunit()).then((res)=>{ +setStata(res.payload.data) }) - }, [roadData]) - useEffect(() => { - let chartInstance = echarts.init(frequentlyChartRef.current); +},[true]) + // const seasonChartRef = useRef(null); - const frequentlyOption = { - tooltip: { - show: true, - trigger: "item", - }, - title: [ - { - text: "经常性", - x: "center", - top: "55%", - textStyle: { - color: "#E9F7FF", - fontSize: 14, - }, - }, - { - text: roadData?.curingPeriod?.frequent || 0, - x: "center", - y: "35%", - textStyle: { - fontSize: "30", - color: "#FFFFFF", - fontFamily: "YouSheBiaoTiHei", - }, - }, - ], - polar: { - radius: ["60%", "68%"], - center: ["50%", "50%"], - }, - grid: { - left: "10%", - top: "12%", - right: "1%", - bottom: "8%", - width: '70%', - containLabel: true, - }, - angleAxis: { - max: total || 0, - show: false, - }, - radiusAxis: { - type: "category", - show: true, - axisLabel: { - show: false, - }, - axisLine: { - show: false, - }, - axisTick: { - show: false, - }, - }, - series: [ - { - name: "", - type: "bar", - roundCap: true, - barWidth: 30, - showBackground: true, - data: [{ value: roadData?.curingPeriod?.frequent || 0, name: '经常性' }], - coordinateSystem: "polar", - itemStyle: { - normal: { - color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [ - { - offset: 0, - color: "#C5EFFF", - }, - { - offset: 1, - color: "#07B9FE", - }, - ]), - }, - }, - }, + // const frequentlyChartRef = useRef(null); + // const { roadData, loading } = props + // let total = roadData?.curingPeriod?.frequent + roadData?.curingPeriod?.season + // useEffect(() => { + // let chartInstance = echarts.init(seasonChartRef.current); + // const seasonOption = { + // tooltip: { + // show: true + // }, + // title: [ + // { + // text: "季节性", + // x: "center", + // top: "55%", + // textStyle: { + // color: "#E9F7FF", + // fontSize: 14, + // }, + // }, + // { + // text: roadData?.curingPeriod?.season || 0, + // x: "center", + // y: "35%", + // textStyle: { + // fontSize: "30", + // color: "#FFFFFF", + // fontFamily: "YouSheBiaoTiHei", + // }, + // }, + // ], + // polar: { + // radius: ["60%", "68%"], + // center: ["50%", "50%"], + // }, + // grid: { + // left: "5%", + // top: "12%", + // right: "1%", + // bottom: "8%", + // containLabel: true, + // }, + // angleAxis: { + // max: total || 0, + // show: false, + // }, + // radiusAxis: { + // type: "category", + // show: true, + // axisLabel: { + // show: false, + // }, + // axisLine: { + // show: false, + // }, + // axisTick: { + // show: false, + // }, + // }, + // series: [ + // { + // name: "", + // type: "bar", + // roundCap: true, + // barWidth: 30, + // showBackground: true, + // data: [{ value: roadData?.curingPeriod?.season || 0, name: '季节性' }], + // coordinateSystem: "polar", + // itemStyle: { + // normal: { + // color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [ + // { + // offset: 0, + // color: "#AAC8FF", + // }, + // { + // offset: 1, + // color: "#0041BB", + // }, + // ]), + // }, + // }, + // }, + // ], + // }; + // chartInstance.setOption(seasonOption); + // window.addEventListener('resize', () => { + // if (chartInstance) { + // chartInstance.resize() + // } + // }) + // }, [roadData]) + // useEffect(() => { + // let chartInstance = echarts.init(frequentlyChartRef.current); - ], - }; - chartInstance.setOption(frequentlyOption); - window.addEventListener('resize', () => { - if (chartInstance) { - chartInstance.resize() - } - }) - }, [roadData]) + // const frequentlyOption = { + // tooltip: { + // show: true, + // trigger: "item", + // }, + // title: [ + // { + // text: "经常性", + // x: "center", + // top: "55%", + // textStyle: { + // color: "#E9F7FF", + // fontSize: 14, + // }, + // }, + // { + // text: roadData?.curingPeriod?.frequent || 0, + // x: "center", + // y: "35%", + // textStyle: { + // fontSize: "30", + // color: "#FFFFFF", + // fontFamily: "YouSheBiaoTiHei", + // }, + // }, + // ], + // polar: { + // radius: ["60%", "68%"], + // center: ["50%", "50%"], + // }, + // grid: { + // left: "10%", + // top: "12%", + // right: "1%", + // bottom: "8%", + // width: '70%', + // containLabel: true, + // }, + // angleAxis: { + // max: total || 0, + // show: false, + // }, + // radiusAxis: { + // type: "category", + // show: true, + // axisLabel: { + // show: false, + // }, + // axisLine: { + // show: false, + // }, + // axisTick: { + // show: false, + // }, + // }, + // series: [ + // { + // name: "", + // type: "bar", + // roundCap: true, + // barWidth: 30, + // showBackground: true, + // data: [{ value: roadData?.curingPeriod?.frequent || 0, name: '经常性' }], + // coordinateSystem: "polar", + // itemStyle: { + // normal: { + // color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [ + // { + // offset: 0, + // color: "#C5EFFF", + // }, + // { + // offset: 1, + // color: "#07B9FE", + // }, + // ]), + // }, + // }, + // }, + + + // ], + // }; + // chartInstance.setOption(frequentlyOption); + // window.addEventListener('resize', () => { + // if (chartInstance) { + // chartInstance.resize() + // } + // }) + // }, [roadData]) const style = { height: "31%", marginTop: "3%" } return ( - -
    + + {/*
    @@ -216,8 +227,19 @@ const LeftTop = (props) => { top: '66%', zIndex: 999 }} /> -
    - +
    */} + {/*
    */} + + + {/*
    */} + ) } -export default LeftTop \ No newline at end of file +function mapStateToProps(state) { + const { auth } = state; + return { + user: auth.user, + + } +} +export default connect(mapStateToProps)(LeftTop) \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left/lun.less b/web/client/src/sections/quanju/containers/footer/conserve/left/lun.less new file mode 100644 index 00000000..172852fa --- /dev/null +++ b/web/client/src/sections/quanju/containers/footer/conserve/left/lun.less @@ -0,0 +1,7 @@ +.dian{ + // width: 9.09%; + height: 100%; + + // background-color: pink; + float: left; +} \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left/lunbo.js b/web/client/src/sections/quanju/containers/footer/conserve/left/lunbo.js new file mode 100644 index 00000000..de13297c --- /dev/null +++ b/web/client/src/sections/quanju/containers/footer/conserve/left/lunbo.js @@ -0,0 +1,110 @@ +import React, { useEffect, useRef, useState } from 'react'; +import Module from '../../../public/module' +import * as echarts from 'echarts'; +import { Badge, Spin } from 'antd'; +import Leftbottom from "./lunbozujian" +import PieChart from "./shituzujian" +import Lun from "./zidong" +import { back } from 'koa-convert'; +import "./lun.less" +import { getxiugai } from "../action/index" + +const Lunbo = (props) => { + const { data } = props + if (!data || !data.length) { + return '' + } + console.log(data) + const style = { height: "31%", marginTop: "3%" } + const [list, setList] = useState([]) + const [num, setNum] = useState({ value: 0 }) + const [falg, setFalg] = useState(2) + const [namedata, setNamedata] = useState() + const [state, setState] = useState([ + { value: data ? data[0].roadLengthCounty || 0 : 0, name: "县道" }, + { value: data ? data[0].roadLengthTownship || 0 : 0, name: "乡道" }, + { value: data ? data[0].roadLengthVillage || 0 : 0, name: "村道" }, + + ]) + const [mon, setMon] = useState([ + { value: data ? data[0].roadCostCounty || 0 : 0, name: "县费用" }, + { value: data ? data[0].roadCostTownship || 0 : 0, name: "乡费用" }, + { value: data ? data[0].roadCostVillage || 0 : 0, name: "村费用" } + ]) + const [lenght, setLenght] = useState(data ? data.length : "") + const ref = useRef() + const renderBody = (num) => { + setState([{ value: data ? data[num].roadLengthCounty || 0 : 0, name: "县道" }, { value: data ? data[num].roadLengthTownship || 0 : 0, name: "乡道" }, { value: data ? data[num].roadLengthVillage || 0 : 0, name: "村道" }]) + setMon([ + { value: data ? data[num].roadCostCounty || 0 : 0, name: "县费用" }, + { value: data ? data[num].roadCostTownship || 0 : 0, name: "乡费用" }, + { value: data ? data[num].roadCostVillage || 0 : 0, name: "村费用" } + ]) + } + const timerStart = () => { + clearTimer() + ref.current = setTimeout(() => { + let n_num = { value: num.value + 1 } + if (num.value >= (data?.length - 1)) { + setNum({ value: 1 }) + renderBody(1) + } else { + if (num.value == 1) { + renderBody(2) + } else { + renderBody(num.value + 1) + } + setNum(n_num) + } + + // renderBody(num.value) + }, 5000) + } + const dianji = (num) => { + renderBody(num) + } + useEffect(() => { + renderBody(0) + timerStart() + return () => { + clearTimer() + } + }, [num]) + // renderBody(num.value) + + + const clearTimer = () => { + if (ref.current) { + clearTimeout(ref.current) + ref.current = null + } + + } + return ( +
    +
    +
    {data[num.value].countyName}
    + +
    + { + data ? data.map((item, index) => { + return
    { + setNum({ value: index }) + dianji(index) + }}>
    + }) : "" + } +
    +
    + ) +} +export default Lunbo \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left/lunbozujian.js b/web/client/src/sections/quanju/containers/footer/conserve/left/lunbozujian.js new file mode 100644 index 00000000..f789bc9a --- /dev/null +++ b/web/client/src/sections/quanju/containers/footer/conserve/left/lunbozujian.js @@ -0,0 +1,99 @@ +import React, { useState, useEffect } from 'react' +import Module from '../../../public/module' +import { Spin } from 'antd' +import Lun from "../../leadership/right/lunbo" +import "../../leadership/right/left.less" +import { getZhichaodata } from "../../../../actions/example" + +const Lefttbottom = (props) => { + const { data } = props + const style = { height: "28%", marginTop: "4%" } + const [beijing, setBeijing] = useState() + // const [data, setdata] = useState(data) + const [rightDatas, setrightDatas] = useState([]) + const [nums, setNums] = useState([]) + const [num, setNum] = useState() + + // const requestRightDatas = async () => { + // const res = await dispatch(getZhichaodata()) + // var pattern = /[\u4e00-\u9fa5]*/; + // let d = res.payload.data?.overSpeeddata?.filter((item, index) => { + // return /.*[\u4e00-\u9fa5_a-zA-Z]+.*$/.test(item.processingTime) == false + // }) + // console.log(res); + // d.map((item, index) => { + // if (parseInt(item.processingTime.match(/([^.]*)$/)[0]) < 10) { + // return item.processingTime = `${(item.processingTime.match(/^([^.]*)(.[^.]*)/)[0])}.0${parseInt(item.processingTime.match(/([^.]*)$/)[0])}` + // } + // }) + // d.sort((a, b) => b.processingTime.localeCompare(a.processingTime)) + // // setrightDatas(res.payload.data) + // setdata(d) + // } + // useEffect(() => { + // const zhichaodata = dispatch(getZhichaodata()).then((res) => { + // setNums(res.payload?.data?.processed) + + // }) + // requestRightDatas() + // }, []) + const renderBody = () => { + return ( +
    + {data?.map((item, index) => { + return
  • { + setBeijing(index) + setNum(index) + }} onMouseLeave={() => { + setBeijing() + setNum() + }}> + {beijing == index ? : ""} +
    {item.responsibleUnitForManagementAndMaintenance}
    +
    {item.countyHighway||'--'}
    +
    {item.townshipRoad||'--'}
    +
    {item.villageRoad||'--'}
    +
    {item.bridge||'--'}
    + {/* { + num == index ?
    + +
    + +

    {item.overrunRate ? item.overrunRate + "%" : "--"}

    +

    超限

    +
    +
    +

    车牌号{item.danwei}

    +

    检测点{item.xian}

    +

    处罚{item.xiang}

    +

    日期{item.cun}

    +

    日期{item.qiao}

    +
    +
    : "" + } */} +
  • + }) + + } +
    + ) + } + return ( + <> +
    +

    管养责任单位

    +

    县道(km)

    +

    乡道(km)

    +

    村道(km)

    +

    桥梁(座)

    +
    + + + ) +} +export default Lefttbottom \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left/shituzujian.js b/web/client/src/sections/quanju/containers/footer/conserve/left/shituzujian.js new file mode 100644 index 00000000..ed95523c --- /dev/null +++ b/web/client/src/sections/quanju/containers/footer/conserve/left/shituzujian.js @@ -0,0 +1,168 @@ +import React,{useState} from 'react' +import { useEffect, useRef } from 'react'; +import * as echarts from 'echarts'; +import _ from 'lodash'; +const PieChart = (props) => { + const { width, height, datas, colorList, underColorList, total, text, textLeft, numLeft, state, num, mon,namedata } = props + const chartRef = useRef(null); +const [styloptr,setStyloptr]=useState()//费用 +const [extent,setExtent]=useState()//长度 + let states = [] + let monstate=[] + useEffect(()=>{ + + // state.map((item) => { + // states.push({ name: item.name, value: Math.round(item.value * 100) / 100 }) + // }) + let arr=null + + state.map((item)=>{ + arr+=item.value + setExtent(arr.toFixed(3)) + + }) + let aui=null + mon.map((item)=>{ + aui+=Number(item.value) + setStyloptr(Math.ceil(aui)) + }) + },[num]) +const data = [ + { value: styloptr, name: "金额", bgColor: "#1d2c44", progressColor: "#9494ff",clr:'元' }, + { value: extent, name: "里程", bgColor: "#2a303a", progressColor: "#f8be15",clr:'km' }, + + ]; + useEffect(() => { + let states=[] + state.map((item)=>{ + + states.push({value:item.value.toFixed(3),name:item.name}) + }) + let mons=[] + mon.map((item)=>{ + mons.push({value:Math.ceil(item.value),name:item.name}) + }) + let chartInstance = echarts.init(chartRef.current); + const option = { + tooltip: { + trigger: "item", + formatter: "{a}{b}: {c} ({d}%)", + show: true, + }, + legend: { + orient: "vertical", + right: "5%", + bottom: "15%", + // width: "260px", + // formatter: (name) => { + // for (let i = 0; i < option.series[1].data.length; i += 1) { + // if (name === option.series[1].data[i].name) { + // let arr = [`{a|${name}}`, `{b|${option.series[1].data[i].value}}`] + // return arr.join('\t'); + // } + // } + show:false, + } , + series: [ + { + name: "", + type: "pie", + // selectedMode: "single", + color: ["rgba(4, 251, 240, 1)", "rgba(7, 185, 254, 1)", "rgba(28, 96, 254, 1)"], + radius: [0, "50%"], + center: ['30%', '50%'], + label: { + normal: { + position: "inner", + show: false, + // formatter: "{a}{b}: {c} ({d}%)", + + }, + + + }, + labelLine: { + normal: { + // show: false, + }, + }, + data: states, + }, + { + name: "", + type: "pie", + radius: ["65%", "75%"], + center: ['30%', '50%'], + avoidLabelOverlap: false, + color: ["rgba(4, 251, 240, 1)", "rgba(7, 185, 254, 1)", "rgba(28, 96, 254, 1)"], + data: mons, + label: { + normal: { + // formatter: "{b}:{c}km" + "\n\r" + "({d}%)", + show: false, + position: "left", + }, + emphasis: { + show: false, + textStyle: { + fontSize: "30", + fontWeight: "bold", + }, + }, + }, + labelLine: { + normal: { + // show: false, + }, + }, + }, + ], + }; + chartInstance.setOption(option); + window.addEventListener('resize', () => { + if (chartInstance) { + chartInstance.resize() + } + }) + }, [num]) + return ( +
    +
    +
    {data?.map((item, index) => { + + // let bgWid = (c.value / number * 100).toFixed(2) + '%' + const { progressColor} = item; + return ( +
    +
    +
    + +
    {item.name}
    +
    {item.value}
    +
    {item.clr}
    + +
    +
    + ); + })}
    + +
    + + ) +} +export default PieChart \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left/zhexin.js b/web/client/src/sections/quanju/containers/footer/conserve/left/zhexin.js new file mode 100644 index 00000000..21901043 --- /dev/null +++ b/web/client/src/sections/quanju/containers/footer/conserve/left/zhexin.js @@ -0,0 +1,282 @@ +import React from 'react' +import { useEffect, useRef, useState } from 'react'; +import * as echarts from 'echarts'; +import { Col, Row } from 'antd' +import moment from 'moment'; + + +const ZheXian = (props) => { + const { shuju } = props + if (!shuju || !shuju.length) { + return '' + } + const style = { height: "31%", marginTop: "3%" } + const chartRef = useRef(); + const zhuzhuang='../../../../../../assets/images/zhuzhuang.png' + const zhexian='../../../../../../assets/images/zhexian.png' + useEffect(() => { + + }, [true]) + useEffect(() => { + let columnar = [] + shuju?.map((item) => { + let adhn=item?.roadLengthCounty + item?.roadLengthTownship + item?.roadLengthVillage + + columnar.push(adhn.toFixed(3)) + }) + columnar.reverse() + let broken=[] + shuju?.map((item) => { + console.log(Number(item?.roadCostCounty)) + broken.push(Math.ceil(Number(item?.roadCostCounty) + Number(item?.roadCostTownship) + Number(item?.roadCostVillage))) + }) + broken.reverse() + + let date = new Date() + let year = date.getFullYear() + let month = date.getMonth() + 1 + let newYear = 0 + let newMonth = 0 + let newDateArr = [] + for (let i = 0; i < 7; i++) { //这里是获取前六个月,所以循环6次,根据需要修改 + if (month - i < 1) { //这里的判断是如果当前月份往前推到了去年 需要做的处理 + newYear = year - 1 + newMonth = month - i + 12 >= 10 ? month - i + 12 : '0' + (month - i + 12) + newDateArr.push(newYear + '-' + newMonth) //这里拼接格式化,在时间中间加了个-,根据实际需求来 + } else { + newMonth = month - i >= 10 ? month - i : '0' + (month - i) //这里是对月份小于10做加前面加0处理 + newDateArr.push(year + '-' + newMonth) + } + } + newDateArr.splice(0, 1) + newDateArr.reverse() + + let chartInstance = echarts.init(chartRef.current); + const option = { + // backgroundColor: "#344b58", + title: { + x: "4%", + + textStyle: { + color: "#fff", + fontSize: "22", + }, + subtextStyle: { + color: "#90979c", + fontSize: "16", + }, + }, + tooltip: { + trigger: "axis", + axisPointer: { + type: "shadow", + textStyle: { + color: "#fff", + }, + }, + formatter: function (params, ticket, callback) { + var res = params[0].name; + + for (var i = 0, l = params.length; i < l; i++) { + if (params[i].seriesType === "line") { + res += + "
    " + + params[i].seriesName + + " : " + + (params[i].value ? params[i].value : "-") + + "元"; + } else { + res += + "
    " + + params[i].seriesName + + " : " + + (params[i].value ? params[i].value : "-") + + "km"; + } + } + return res; + }, + }, + grid: { + borderWidth: 0, + top: 60, + bottom: 10, + right: 20, + left: 20, + textStyle: { + color: "#fff", + }, + containLabel: true, + }, + legend: { + x: "60%", + top: "5%", + textStyle: { + color: "#90979c", + }, + show: false, + + }, + calculable: true, + xAxis: [ + { + type: "category", + axisLine: { + lineStyle: { + color: "rgba(216,240,255,0.8)", + }, + }, + splitLine: { + show: false, + }, + axisTick: { + show: false, + }, + splitArea: { + show: false, + }, + axisLabel: { + interval: 0, + }, + data: newDateArr, + }, + ], + yAxis: [ + { + type: "value", + splitLine: { + show: true, + position: "right", + lineStyle: { + color: "rgba(176,215,255,0.2500)", + type: "dashed", + }, + }, + axisLine: { + lineStyle: { + color: "rgba(216,240,255,0.800)", + }, + }, + axisTick: { + show: false, + }, + axisLabel: { + interval: 0, + }, + splitArea: { + show: false, + }, + }, + { + type: "value", + min: 0, + splitLine: { + show: true, + lineStyle: { + color: "rgba(176,215,255,0.2500)", + type: "dashed", + }, + }, + axisLine: { + lineStyle: { + color: "rgba(216,240,255,0.800)", + }, + }, + axisTick: { + show: false, + }, + axisLabel: { + interval: 0, + }, + splitArea: { + show: false, + }, + }, + ], + series: [ + { + name: "里程", + type: "bar", + barWidth: 20, + yAxisIndex: 1, + itemStyle: { + normal: { + color: { + type: "linear", + x: 0, + y: 0, + x2: 0, + y2: 1, + colorStops: [ + { + offset: 0, + color: "rgba(0,213,255)", // 0% 处的颜色 + }, + { + offset: 1, + color: "rgba(0,213,255,0.2)", // 100% 处的颜色 + }, + ], + global: false, // 缺省为 false + }, + barBorderRadius: 0, + }, + }, + data: columnar||[], + }, + { + name: "费用", + type: "line", + symbolSize: 10, + symbol: "circle", + itemStyle: { + normal: { + color: "#1978E5", + barBorderRadius: 0, + label: { + show: true, + position: "top", + textStyle: { + color: "#D8F0FF", + }, + formatter: function (p) { + return p.value > 0 ? p.value : ""; + }, + }, + }, + }, + lineStyle: { + normal: { + width: 2, + color: "#1978E5", + }, + }, + data: broken, + }, + ], + }; + chartInstance.setOption(option); + window.addEventListener('resize', () => { + if (chartInstance) { + chartInstance.resize() + } + }) + }, []); + return ( +
    +
    { + setFlag(!flag) + console.log(flag); + }} */ style={{ position: "absolute", top: "38.5%", left: "14%", width: "72px", height: "20px", backgroundColor: "rgba(216,240,255,0.1000)", float: "right", textAlign: "center", zIndex: 100, marginRight: "4%", borderLeft: "solid 2px #6E7A83" }} > + +

    +
    { + setFlag(false) + }} */style={{ position: "absolute", width: "72px", left: "34%", top: "38.5%", height: "20px", backgroundColor: "rgba(216,240,255,0.1000)", float: "right", textAlign: "center", marginRight: "4%", borderLeft: "solid 2px #6E7A83" }}> + +

    km

    +
    +
    + ) +} +export default ZheXian \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left/zidong.js b/web/client/src/sections/quanju/containers/footer/conserve/left/zidong.js new file mode 100644 index 00000000..23baa169 --- /dev/null +++ b/web/client/src/sections/quanju/containers/footer/conserve/left/zidong.js @@ -0,0 +1,139 @@ +'use strict' +import React, { Component } from 'react'; +import { Row, Col } from 'antd'; + +export default class AutoRollComponent extends Component { + + constructor(props) { + super(props); + this.scrollElem = null; + this.stopscroll = false; + this.preTop = 0; + this.cloneEle = null; + this.currentTop = 0; + this.marqueesHeight = 0; + this.interval = null; + this.state = { + enabledScroll: false + } + } + + get enabledScroll() { + let scrollElem = document.getElementById(this.props.divId); + let fatherElem = scrollElem?.parentNode || null; + if (scrollElem && fatherElem) { + return scrollElem.scrollHeight > fatherElem.scrollHeight + } + + return false; + } + + + marque = (height) => { + try { + this.scrollElem = document.getElementById(this.props.divId); + this.marqueesHeight = height; + if (this.scrollElem) { + this.scrollElem.style.height = this.marqueesHeight; + this.scrollElem.style.overflow = 'hidden'; + } + this.repeat(); + } catch (e) { } + } + + + repeat = () => { + this.scrollElem.scrollTop = 0; + let offset = 1.5 + + this.interval = setInterval(() => { + if (this.stopscroll) return; + this.currentTop = this.currentTop + offset; + this.preTop = this.scrollElem.scrollTop; + this.scrollElem.scrollTop = this.scrollElem.scrollTop + offset; + // console.log(`this.scrollElem.scrollTop:${this.scrollElem.scrollTop} === this.preTop:${this.preTop}`); + if (this.preTop === this.scrollElem.scrollTop) { + this.scrollElem.scrollTop = this.marqueesHeight; + this.scrollElem.scrollTop = this.scrollElem.scrollTop + offset; + } + }, 40); + } + + + componentWillUnmount() { + clearInterval(this.interval); + } + + componentWillReceiveProps(nextProps) { + requestAnimationFrame(() => { + if (this.enabledScroll) { + if (!this.state.enabledScroll) { + this.setState({ enabledScroll: true }, () => { + this.marque(10) + }) + } + + } + }) + } + + componentDidMount() { + if (this.enabledScroll) { + this.setState({ enabledScroll: true }, () => { + this.marque(10) + }) + } + } + + onMouseOver = () => { + this.stopscroll = true; + } + + onMouseOut = () => { + this.stopscroll = false; + } + + + render() { + + const { changeStyleCol, heads, spans, data, divId, divHeight, content, containerStyle = {} } = this.props; + + return ( +
    + { + heads ? + + {heads.map((c, index) => { + return {c} + }) + } + : '' + } + +
    +
    + {content ? content : ''} + {this.state.enabledScroll && content ? content : ''} + { + data ? + data.map((q, idx) => { + return ( +
    + + {heads.map((c, index) => { + return + {index == 1 ? q.data[index] == -1 ? "-" : q.data[index] : index == 2 ? q.data[1] == -1 ? '-' : q.data[index] : q.data[index]} + }) + } + +
    + ) + }) : '' + } +
    +
    +
    +
    + ) + } +} \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/index.js b/web/client/src/sections/quanju/containers/footer/index.js index 608dd38b..cdd0a2b8 100644 --- a/web/client/src/sections/quanju/containers/footer/index.js +++ b/web/client/src/sections/quanju/containers/footer/index.js @@ -13,7 +13,7 @@ const Footer = ({ tabKey, dispatch }) => { case 'build': return case 'conserve': - return + return case "leadership": return case "guanli": diff --git a/web/client/src/sections/quanju/containers/footer/leadership/centerleft/daolu.js b/web/client/src/sections/quanju/containers/footer/leadership/centerleft/daolu.js index 166ca965..661981a4 100644 --- a/web/client/src/sections/quanju/containers/footer/leadership/centerleft/daolu.js +++ b/web/client/src/sections/quanju/containers/footer/leadership/centerleft/daolu.js @@ -4,6 +4,7 @@ import { getRoadmaintain, getdaolutongji } from "../../../../actions/example" import moment from 'moment' import Hua from "./hudong" import { Spin } from 'antd' +import Lunbo from "../right" const Right = (props) => { const { dispatch } = props diff --git a/web/client/src/sections/quanju/containers/footer/leadership/centerleft/huadong.js b/web/client/src/sections/quanju/containers/footer/leadership/centerleft/huadong.js new file mode 100644 index 00000000..74a61d14 --- /dev/null +++ b/web/client/src/sections/quanju/containers/footer/leadership/centerleft/huadong.js @@ -0,0 +1,184 @@ +import React, { Component } from 'react'; +import './left.less'; +class ReactCarousel extends Component { + chunk(arr, size) { + var arr1 = new Array(); + for (var i = 0; i < Math.ceil(arr.length / size); i++) { + arr1[i] = new Array(); + } + var j = 0; + var x = 0; + for (var i = 0; i < arr.length; i++) { + if (!((i % size == 0) && (i != 0))) { + arr1[j][x] = arr[i]; + x++; + // console.log("j=" + j + " " + "x=" + x); + } else { + j++; + x = 0; + // console.log("else:" + "j=" + j + " " + "x=" + x); + arr1[j][x] = arr[i]; + // console.log(arr1); + x++; + } + } + return arr1; + } + + constructor() { + super(); + this.state = { + shuzu: [{ name: "南昌县迎宾大道管制路段", images: "/assets/images/leadership/shiyantu.png" }, + { name: "南昌县迎宾大道管制路段2", images: "/assets/images/leadership/shiyantu.png" }, + { name: "南昌县迎宾大道管制路段3", images: "/assets/images/leadership/shiyantu.png" }, + { name: "南昌县迎宾大道管制路段4", images: "/assets/images/leadership/shiyantu.png" }, + { name: "南昌县迎宾大道管制路段", images: "/assets/images/leadership/shiyantu.png" }, + { name: "南昌县迎宾大道管制路段", images: "/assets/images/leadership/shiyantu.png" }, + { name: "南昌县迎宾大道管制路段", images: "/assets/images/leadership/shiyantu.png" }, + { name: "南昌县迎宾大道管制路段", images: "/assets/images/leadership/shiyantu.png" }, + { name: "南昌县迎宾大道管制路段", images: "/assets/images/leadership/shiyantu.png" }], + imgs: [], + showIndex: 0, //显示第几个图片 + timer: null, // 定时器 + show: false, // 前后按钮显示 + // arr1: "" + } + // console.log(this.state.imgs); + this.state.imgs = this.chunk((this.state.shuzu), 4) + } + + + + render() { + return ( +
    +
    { this.stop() }} //鼠标进入停止自动播放 + onMouseLeave={() => { this.start() }} //鼠标退出自动播放 + > +
      + { + + this.state.imgs.map((value, index) => { + return ( +
    • +
      +
      +
      + + {value[0]?.name} +
      +
      + +
      + {value[1]?.name ?
      +
      +
      + + {value[1]?.name} +
      +
      +
      : ""} + {value[2]?.name ?
      +
      +
      + + {value[2]?.name} +
      +
      +
      : ""} + {value[3]?.name ?
      +
      +
      + + {value[3]?.name} +
      +
      +
      : ""} + {/*
      {value[1].name}
      +
      {value[2].name}
      +
      {value[3].name}
      */} +
    • + ) + }) + } +
    + {/*
      + { + this.state.imgs.map((value, index) => { + return ( +
    • { this.change(index) }}> +
    • ) + }) + } + +
    */} +
    + { this.previous(e) }}> + + + { this.next(e) }}> + + +
    +
    +
    + ) + } + componentDidMount() { //一开始自动播放 + this.start(); + } + + componentWillUnmount() { //销毁前清除定时器 + this.stop(); + } + stop = () => { //暂停 + let { timer } = this.state; + clearInterval(timer); + } + start = () => { //开始 + let { timer } = this.state; + timer = setInterval(() => { + this.next(); + }, 300000); + this.setState({ + timer + }) + } + change = (index) => { //点击下面的按钮切换当前显示的图片 + let { showIndex } = this.state; + showIndex = index; + this.setState({ + showIndex + }) + } + previous = (e) => { //上一张 + let ev = e || window.event; + let { showIndex, imgs } = this.state; + if (showIndex <= 0) { + showIndex = imgs.length - 1; + } else { + showIndex--; + } + this.setState({ + showIndex + }) + } + next = (e) => { //下一张 + let ev = e || window.event; + let { showIndex, imgs } = this.state; + if (showIndex >= imgs.length - 1) { + showIndex = 0; + } else { + showIndex++; + } + this.setState({ + showIndex + }) + } +} +export default ReactCarousel; \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/leadership/centerleft/left.less b/web/client/src/sections/quanju/containers/footer/leadership/centerleft/left.less new file mode 100644 index 00000000..1ae8c8f1 --- /dev/null +++ b/web/client/src/sections/quanju/containers/footer/leadership/centerleft/left.less @@ -0,0 +1,98 @@ +li{ + list-style-type:none +} + +.wy-rightTop{ + .ant-select-selector, .ant-select-selection-placeholder{ + background-color:#011f59 !important; + border:#1E7BD6 1px solid !important; + font-family: PingFangSC-Regular, PingFang SC !important; + height: 25px !important; + // line-height: 25px !important; +}.ant-select-selection-item{ + line-height: 25px !important; +} +.anticon{ + color: #fff !important; +} +} + + +.contain { + position: relative; + top: 5%; + left: 45%; + width: 100%; + height: 100%; + transition: all 30s; + transform: translateX(-50%); + color: #fff; + overflow: hidden; + cursor: pointer; +} +.contain .ul { + height: 100%; + list-style: none; +} +.contain .ul .items { + position: absolute; + top: 0px; + width: 100%; + height: 100%; +} +.ul li.show{ + display: block; +} +.ul li { + display: none; +} +.ul li img { + width: 100%; + height: 100%; +} +.contain .dots { + position: absolute; + left: 50%; + bottom: 30px; + height: 10px; + transform: translateX(-50%); +} +.dots li { + float: left; + width: 10px; + height: 10px; + margin: 0px 5px; + border-radius: 50%; + transition: all .3s; + // background-color: antiquewhite; + list-style: none; +} +// .dots li.active { +// background-color: blue; +// } +.control .left { + position: absolute; + top: 80%; + left: 85%; + // padding: 5px; + // transform: translateY(-50%); + width: 20px; + height: 50px; + font-size: 20px; + cursor: pointer; +} +// .control .left:hover { +// background-color: #000000, +// } +.control .right { + position: absolute; + top: 80%; + right: 3%; + // padding: 5px; + // transform: translateY(-50%); + font-size: 20px; + cursor: pointer; +} +// .control .right:hover { +// background-color: rgba(0, 0, 0, .3); +// } \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/leadership/right/right-bottom.js b/web/client/src/sections/quanju/containers/footer/leadership/right/right-bottom.js index 5c9894be..a5c5af5c 100644 --- a/web/client/src/sections/quanju/containers/footer/leadership/right/right-bottom.js +++ b/web/client/src/sections/quanju/containers/footer/leadership/right/right-bottom.js @@ -36,7 +36,7 @@ const Rightbottom = (props) => { }) requestRightDatas() }, []) - // console.log(list); + console.log(list); const renderBody = () => { return (
    diff --git a/web/client/src/utils/webapi.js b/web/client/src/utils/webapi.js index 1442ccc6..bd49b123 100644 --- a/web/client/src/utils/webapi.js +++ b/web/client/src/utils/webapi.js @@ -101,6 +101,8 @@ export const ApiTable = { //公交信息 getCircuit: 'bus/line', putCircuit: 'bus/line', delCircuit: 'bus/line/{lineId}', getVehicle: 'bus/car', putVehicle: 'bus/car', delVehicle: 'bus/car/{carId}', + // 获取上月修养护公里数 + getXiuyang: "road/maintenance/cost/query", @@ -272,6 +274,11 @@ export const ApiTable = { //公交信息 getCircuit: 'bus/line', putCircuit: 'bus/line', delCircuit: 'bus/line/{lineId}', getVehicle: 'bus/car', putVehicle: 'bus/car', delVehicle: 'bus/car/{carId}', + //单位概况 + getCustodyunit:'/road/maintenance', + postCustodyunit:'/road/maintenance', + //养护费用 + getMaintenance:'/road/maintenance/cost/nanchang/query' }; diff --git a/web/log/development.txt b/web/log/development.txt index 9ec2cc8f..31bef6b9 100644 --- a/web/log/development.txt +++ b/web/log/development.txt @@ -1,47 +1,41 @@ -<<<<<<< HEAD -2022-03-11 15:24:58.542 - debug: [FS-LOGGER] Init. -2022-03-11 15:24:58.796 - info: [Router] Inject api: attachment/index -2022-03-11 15:31:30.837 - error: [FS-ERRHD] +2022-08-26 10:37:28.641 - error: [FS-ERRHD] { - message: 'Error: connect ECONNREFUSED 127.0.0.1:4100', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', syscall: 'connect', - address: '127.0.0.1', - port: 4100 + address: '10.8.30.157', + port: 9119 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://127.0.0.1:4100/project/login', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '127.0.0.1:4100', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="96", "Google Chrome";v="96"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'content-type': 'application/json', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', - origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh,zh-CN;q=0.9,en-US;q=0.8,en;q=0.7', - cookie: 'Hm_lvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1644892216,1646099503; SL_GWPT_Show_Hide_tmp=undefined; SL_G_WPT_TO=zh; SL_wptGlobTipTmp=undefined; Hm_lpvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1646804937; pepToken=8c365488-ac71-4de6-acf4-43d4fe7eabef' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"654321","p":"456"}', + method: 'GET', + body: '[object Object]', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -49,61 +43,58 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:4100\n' + - ' at new RequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:428:9)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-03-11 15:31:32.866 - error: [FS-ERRHD] +2022-08-26 10:37:28.646 - error: [FS-ERRHD] { - message: 'Error: connect ECONNREFUSED 127.0.0.1:4100', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', syscall: 'connect', - address: '127.0.0.1', - port: 4100 + address: '10.8.30.157', + port: 9119 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://127.0.0.1:4100/project/login', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '127.0.0.1:4100', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="96", "Google Chrome";v="96"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'content-type': 'application/json', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', - origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh,zh-CN;q=0.9,en-US;q=0.8,en;q=0.7', - cookie: 'Hm_lvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1644892216,1646099503; SL_GWPT_Show_Hide_tmp=undefined; SL_G_WPT_TO=zh; SL_wptGlobTipTmp=undefined; Hm_lpvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1646804937; pepToken=8c365488-ac71-4de6-acf4-43d4fe7eabef' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"654321","p":"456"}', + method: 'GET', + body: '[object Object]', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -111,55 +102,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:4100\n' + - ' at new RequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:428:9)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-03-11 15:32:47.799 - debug: [FS-LOGGER] Init. -2022-03-11 15:32:47.982 - info: [Router] Inject api: attachment/index -2022-03-11 15:39:07.350 - error: [FS-ERRHD] +2022-08-26 10:37:28.649 - error: [FS-ERRHD] { - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', syscall: 'connect', - address: '127.0.0.1', - port: 14000 + address: '10.8.30.157', + port: 9119 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://127.0.0.1:14000/enterprises/undefined/members?token=136621db-739e-4817-bbc8-1e48a047178e', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '127.0.0.1:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="96", "Google Chrome";v="96"', - expires: '-1', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', + expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/example/e1', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh,zh-CN;q=0.9,en-US;q=0.8,en;q=0.7', - cookie: 'Hm_lvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1644892216,1646099503; SL_GWPT_Show_Hide_tmp=undefined; SL_G_WPT_TO=zh; SL_wptGlobTipTmp=undefined; Hm_lpvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1646804937; pepToken=8c365488-ac71-4de6-acf4-43d4fe7eabef' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -172,53 +161,58 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:428:9)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-04-26 16:22:38.937 - debug: [FS-LOGGER] Init. -2022-04-26 16:22:38.994 - info: [Router] Inject api: attachment/index -2022-04-26 16:24:14.763 - error: [FS-ERRHD] +2022-08-26 10:37:28.652 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://127.0.0.1:14000/login', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '127.0.0.1:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'content-length': '55', - expires: '-1', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - 'content-type': 'application/json', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', accept: '*/*', - origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', + method: 'GET', + body: '[object Object]', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -226,129 +220,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-04-26 16:25:48.770 - debug: [FS-LOGGER] Init. -2022-04-26 16:25:48.822 - info: [Router] Inject api: attachment/index -2022-04-27 08:22:44.239 - debug: [FS-LOGGER] Init. -2022-04-27 08:22:44.315 - info: [Router] Inject api: attachment/index -2022-04-28 14:05:23.315 - debug: [FS-LOGGER] Init. -2022-04-28 14:05:23.386 - info: [Router] Inject api: attachment/index -2022-04-29 09:11:40.683 - debug: [FS-LOGGER] Init. -2022-04-29 09:11:40.748 - info: [Router] Inject api: attachment/index -2022-04-29 11:18:28.238 - debug: [FS-LOGGER] Init. -2022-04-29 11:18:28.589 - info: [Router] Inject api: attachment/index -2022-04-29 15:29:15.850 - debug: [FS-LOGGER] Init. -2022-04-29 15:29:15.905 - info: [Router] Inject api: attachment/index -2022-04-29 17:47:10.734 - debug: [FS-LOGGER] Init. -2022-04-29 17:47:11.075 - info: [Router] Inject api: attachment/index -2022-05-05 08:24:36.443 - debug: [FS-LOGGER] Init. -2022-05-05 08:24:36.516 - info: [Router] Inject api: attachment/index -2022-05-05 08:26:00.485 - debug: [FS-LOGGER] Init. -2022-05-05 08:26:00.535 - info: [Router] Inject api: attachment/index -2022-05-05 11:18:26.949 - debug: [FS-LOGGER] Init. -2022-05-05 11:18:26.999 - info: [Router] Inject api: attachment/index -2022-05-05 11:21:27.396 - debug: [FS-LOGGER] Init. -2022-05-05 11:21:27.445 - info: [Router] Inject api: attachment/index -2022-05-05 14:03:43.946 - debug: [FS-LOGGER] Init. -2022-05-05 14:03:44.000 - info: [Router] Inject api: attachment/index -2022-05-05 14:25:10.162 - debug: [FS-LOGGER] Init. -2022-05-05 14:25:10.211 - info: [Router] Inject api: attachment/index -2022-05-05 15:00:00.205 - debug: [FS-LOGGER] Init. -2022-05-05 15:00:00.257 - info: [Router] Inject api: attachment/index -2022-05-05 15:34:21.861 - debug: [FS-LOGGER] Init. -2022-05-05 15:34:22.269 - info: [Router] Inject api: attachment/index -2022-05-05 15:41:59.674 - debug: [FS-LOGGER] Init. -2022-05-05 15:41:59.728 - info: [Router] Inject api: attachment/index -2022-05-05 16:27:48.108 - debug: [FS-LOGGER] Init. -2022-05-05 16:27:48.161 - info: [Router] Inject api: attachment/index -2022-05-05 17:16:49.579 - debug: [FS-LOGGER] Init. -2022-05-05 17:16:49.631 - info: [Router] Inject api: attachment/index -2022-05-06 08:35:09.722 - debug: [FS-LOGGER] Init. -2022-05-06 08:35:09.792 - info: [Router] Inject api: attachment/index -2022-05-06 09:01:25.138 - debug: [FS-LOGGER] Init. -2022-05-06 09:01:25.188 - info: [Router] Inject api: attachment/index -2022-05-06 09:37:38.434 - debug: [FS-LOGGER] Init. -2022-05-06 09:37:38.489 - info: [Router] Inject api: attachment/index -2022-05-06 13:33:53.162 - debug: [FS-LOGGER] Init. -2022-05-06 13:33:53.219 - info: [Router] Inject api: attachment/index -<<<<<<< .mine2022-05-13 13:58:14.928 - debug: [FS-LOGGER] Init. -2022-05-13 13:58:14.991 - info: [Router] Inject api: attachment/index -2022-05-14 08:29:29.594 - debug: [FS-LOGGER] Init. -2022-05-14 08:29:29.674 - info: [Router] Inject api: attachment/index -2022-05-14 09:22:50.473 - debug: [FS-LOGGER] Init. -2022-05-14 09:22:50.524 - info: [Router] Inject api: attachment/index -2022-05-14 09:23:24.744 - debug: [FS-LOGGER] Init. -2022-05-14 09:23:24.796 - info: [Router] Inject api: attachment/index -2022-05-14 09:51:41.277 - debug: [FS-LOGGER] Init. -2022-05-14 09:51:41.353 - info: [Router] Inject api: attachment/index -2022-05-14 10:24:41.265 - debug: [FS-LOGGER] Init. -2022-05-14 10:24:41.338 - info: [Router] Inject api: attachment/index -2022-05-14 14:06:18.857 - debug: [FS-LOGGER] Init. -2022-05-14 14:06:18.911 - info: [Router] Inject api: attachment/index -2022-05-15 08:49:57.570 - debug: [FS-LOGGER] Init. -2022-05-15 08:49:57.646 - info: [Router] Inject api: attachment/index -2022-05-15 11:13:26.408 - debug: [FS-LOGGER] Init. -2022-05-15 11:13:26.463 - info: [Router] Inject api: attachment/index -2022-05-16 08:28:04.125 - debug: [FS-LOGGER] Init. -2022-05-16 08:28:04.201 - info: [Router] Inject api: attachment/index -2022-05-16 17:52:59.089 - debug: [FS-LOGGER] Init. -2022-05-16 17:52:59.158 - info: [Router] Inject api: attachment/index -=======2022-05-13 15:46:53.227 - debug: [FS-LOGGER] Init. -2022-05-13 15:46:53.689 - info: [Router] Inject api: attachment/index -2022-05-14 08:58:22.936 - debug: [FS-LOGGER] Init. -2022-05-14 08:58:23.401 - info: [Router] Inject api: attachment/index -2022-05-15 13:16:42.604 - debug: [FS-LOGGER] Init. -2022-05-15 13:16:42.972 - info: [Router] Inject api: attachment/index -2022-05-16 08:31:34.989 - debug: [FS-LOGGER] Init. -2022-05-16 08:31:35.060 - info: [Router] Inject api: attachment/index ->>>>>>> .theirs2022-05-17 09:54:54.160 - debug: [FS-LOGGER] Init. -2022-05-17 09:54:54.208 - info: [Router] Inject api: attachment/index -2022-05-17 11:40:21.594 - debug: [FS-LOGGER] Init. -2022-05-17 11:40:21.645 - info: [Router] Inject api: attachment/index -2022-05-17 14:11:48.280 - debug: [FS-LOGGER] Init. -2022-05-17 14:11:48.333 - info: [Router] Inject api: attachment/index -2022-05-17 14:15:25.955 - debug: [FS-LOGGER] Init. -2022-05-17 14:15:26.002 - info: [Router] Inject api: attachment/index -2022-05-17 14:38:52.872 - debug: [FS-LOGGER] Init. -2022-05-17 14:38:52.920 - info: [Router] Inject api: attachment/index -2022-05-17 14:53:55.485 - debug: [FS-LOGGER] Init. -2022-05-17 14:53:55.532 - info: [Router] Inject api: attachment/index -2022-05-17 15:33:04.384 - error: [FS-ERRHD] +2022-08-26 10:37:28.655 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -361,43 +279,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 15:33:04.388 - error: [FS-ERRHD] +2022-08-26 10:37:28.660 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -410,43 +338,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 15:33:04.391 - error: [FS-ERRHD] +2022-08-26 10:37:49.710 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -459,43 +397,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 15:33:04.392 - error: [FS-ERRHD] +2022-08-26 10:37:49.712 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -508,43 +456,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 15:33:04.393 - error: [FS-ERRHD] +2022-08-26 10:37:49.714 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -557,43 +515,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 15:33:04.395 - error: [FS-ERRHD] +2022-08-26 10:37:50.708 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -606,43 +574,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:06:14.007 - error: [FS-ERRHD] +2022-08-26 10:37:50.713 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -655,43 +633,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:06:14.009 - error: [FS-ERRHD] +2022-08-26 10:37:50.723 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -704,43 +692,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:06:14.012 - error: [FS-ERRHD] +2022-08-26 10:37:50.726 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -753,43 +751,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:07:58.429 - error: [FS-ERRHD] +2022-08-26 10:37:50.728 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -802,42 +810,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketOnEnd (node:_http_client:466:9)\n' + - ' at Socket.emit (node:events:538:35)\n' + - ' at endReadableNT (node:internal/streams/readable:1345:12)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:07:58.431 - error: [FS-ERRHD] +2022-08-26 10:37:50.730 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -850,42 +869,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketOnEnd (node:_http_client:466:9)\n' + - ' at Socket.emit (node:events:538:35)\n' + - ' at endReadableNT (node:internal/streams/readable:1345:12)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:07:58.432 - error: [FS-ERRHD] +2022-08-26 10:38:11.756 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -898,43 +928,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.433 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' +} +2022-08-26 10:38:11.759 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, + error: { '$ref': '$["cause"]' }, + options: { + jar: false, + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -947,42 +987,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketOnEnd (node:_http_client:466:9)\n' + - ' at Socket.emit (node:events:538:35)\n' + - ' at endReadableNT (node:internal/streams/readable:1345:12)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:07:58.434 - error: [FS-ERRHD] +2022-08-26 10:38:11.772 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -995,43 +1046,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:07:58.436 - error: [FS-ERRHD] +2022-08-26 10:38:11.776 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/road_manage?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1044,43 +1105,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.088 - error: [FS-ERRHD] +2022-08-26 10:38:11.782 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1093,43 +1164,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.090 - error: [FS-ERRHD] +2022-08-26 10:38:11.785 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1142,43 +1223,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.091 - error: [FS-ERRHD] +2022-08-26 10:40:34.849 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1191,43 +1282,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.092 - error: [FS-ERRHD] +2022-08-26 10:40:34.862 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1240,43 +1341,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.093 - error: [FS-ERRHD] +2022-08-26 10:40:34.865 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1289,43 +1400,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.094 - error: [FS-ERRHD] +2022-08-26 10:40:34.867 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1338,43 +1459,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.095 - error: [FS-ERRHD] +2022-08-26 10:40:34.869 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1387,43 +1518,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.096 - error: [FS-ERRHD] +2022-08-26 10:40:34.882 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1436,43 +1577,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.097 - error: [FS-ERRHD] +2022-08-26 10:40:56.442 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1485,43 +1636,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.099 - error: [FS-ERRHD] +2022-08-26 10:40:56.450 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1534,43 +1695,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.100 - error: [FS-ERRHD] +2022-08-26 10:40:56.455 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/road_manage?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1583,43 +1754,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.101 - error: [FS-ERRHD] +2022-08-26 10:40:56.459 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1632,43 +1813,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.102 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' +} +2022-08-26 10:40:56.462 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, + error: { '$ref': '$["cause"]' }, + options: { + jar: false, + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1681,43 +1872,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.103 - error: [FS-ERRHD] +2022-08-26 10:40:56.465 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1730,43 +1931,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.104 - error: [FS-ERRHD] +2022-08-26 10:41:19.309 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1779,43 +1990,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.105 - error: [FS-ERRHD] +2022-08-26 10:41:19.322 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1828,43 +2049,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.106 - error: [FS-ERRHD] +2022-08-26 10:41:19.325 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1877,43 +2108,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:10:22.107 - error: [FS-ERRHD] +2022-08-26 10:41:19.327 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1926,43 +2167,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.901 - error: [FS-ERRHD] +2022-08-26 10:41:19.329 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -1975,43 +2226,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.903 - error: [FS-ERRHD] +2022-08-26 10:41:19.354 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2024,43 +2285,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.904 - error: [FS-ERRHD] +2022-08-26 10:41:40.332 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2073,43 +2344,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.905 - error: [FS-ERRHD] +2022-08-26 10:41:40.364 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/road_manage?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2122,43 +2403,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.906 - error: [FS-ERRHD] +2022-08-26 10:41:40.367 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2171,43 +2462,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.907 - error: [FS-ERRHD] +2022-08-26 10:41:40.369 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2220,43 +2521,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.908 - error: [FS-ERRHD] +2022-08-26 10:41:40.372 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2269,43 +2580,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.909 - error: [FS-ERRHD] +2022-08-26 10:41:40.380 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2318,43 +2639,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.910 - error: [FS-ERRHD] +2022-08-26 10:42:02.497 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2367,43 +2698,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.911 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' +} +2022-08-26 10:42:02.511 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, + error: { '$ref': '$["cause"]' }, + options: { + jar: false, + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2416,43 +2757,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.912 - error: [FS-ERRHD] +2022-08-26 10:42:02.514 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2465,43 +2816,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.913 - error: [FS-ERRHD] +2022-08-26 10:42:02.516 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2514,43 +2875,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.915 - error: [FS-ERRHD] +2022-08-26 10:42:02.519 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2563,43 +2934,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.916 - error: [FS-ERRHD] +2022-08-26 10:42:02.521 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2612,43 +2993,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.916 - error: [FS-ERRHD] +2022-08-26 10:42:23.548 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2661,43 +3052,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.917 - error: [FS-ERRHD] +2022-08-26 10:42:23.582 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/road_manage?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2710,43 +3111,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.918 - error: [FS-ERRHD] +2022-08-26 10:42:23.585 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2759,43 +3170,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.920 - error: [FS-ERRHD] +2022-08-26 10:42:23.587 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2808,43 +3229,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.920 - error: [FS-ERRHD] +2022-08-26 10:42:23.589 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2857,43 +3288,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.921 - error: [FS-ERRHD] +2022-08-26 10:42:23.591 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2906,43 +3347,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.923 - error: [FS-ERRHD] +2022-08-26 10:42:45.732 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -2955,43 +3406,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.924 - error: [FS-ERRHD] +2022-08-26 10:42:45.746 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -3004,43 +3465,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.924 - error: [FS-ERRHD] +2022-08-26 10:42:45.748 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -3053,43 +3524,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.925 - error: [FS-ERRHD] +2022-08-26 10:42:45.751 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -3102,43 +3583,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.926 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' +} +2022-08-26 10:42:45.753 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, + error: { '$ref': '$["cause"]' }, + options: { + jar: false, + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -3151,43 +3642,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.927 - error: [FS-ERRHD] +2022-08-26 10:42:45.762 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -3200,43 +3701,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:20:21.928 - error: [FS-ERRHD] +2022-08-26 10:43:06.778 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -3249,43 +3760,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:21:43.012 - error: [FS-ERRHD] +2022-08-26 10:43:06.794 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -3298,43 +3819,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:21:43.013 - error: [FS-ERRHD] +2022-08-26 10:43:06.811 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -3347,43 +3878,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:21:43.015 - error: [FS-ERRHD] +2022-08-26 10:43:13.876 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', + url: 'http://10.8.30.157:9119/road_manage?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.170:14000', + host: '10.8.30.157:9119', connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -3396,63 +3937,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-05-17 16:57:45.161 - debug: [FS-LOGGER] Init. -2022-05-17 16:57:45.214 - info: [Router] Inject api: attachment/index -2022-07-18 17:40:02.934 - debug: [FS-LOGGER] Init. -2022-07-18 17:40:02.984 - info: [Router] Inject api: attachment/index -2022-07-19 09:38:20.086 - debug: [FS-LOGGER] Init. -2022-07-19 09:38:20.998 - info: [Router] Inject api: attachment/index -<<<<<<< HEAD -2022-07-21 15:22:04.942 - debug: [FS-LOGGER] Init. -2022-07-21 15:22:05.542 - info: [Router] Inject api: attachment/index -2022-07-21 17:03:00.480 - debug: [FS-LOGGER] Init. -2022-07-21 17:03:01.177 - info: [Router] Inject api: attachment/index -2022-07-21 18:12:39.625 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:8439', +2022-08-26 10:43:13.880 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', cause: { - errno: -4039, + errno: 'ETIMEDOUT', code: 'ETIMEDOUT', syscall: 'connect', address: '10.8.30.157', - port: 8439 + port: 9119 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.157:8439/enterprises/undefined/members?token=215ed57a-8244-4523-b2ed-5a6b12b51711', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '10.8.30.157:8439', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - expires: '-1', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', + expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -3465,130 +3996,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:8439\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -======= -2022-07-20 19:15:55.678 - debug: [FS-LOGGER] Init. -2022-07-20 19:15:56.118 - info: [Router] Inject api: attachment/index -<<<<<<< Updated upstream ->>>>>>> 65cf2722eec21e1d07ce958f4298eec7ae620c85 -<<<<<<< Updated upstream -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes -<<<<<<< HEAD -2022-07-25 16:13:26.719 - debug: [FS-LOGGER] Init. -2022-07-25 16:26:39.904 - error: [FS-ERRHD] -======= -<<<<<<< Updated upstream -======= -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes ->>>>>>> Stashed changes -======= -2022-07-23 15:27:04.168 - debug: [FS-LOGGER] Init. -2022-07-23 15:27:04.699 - info: [Router] Inject api: attachment/index -2022-07-23 16:53:59.811 - error: [FS-ERRHD] -<<<<<<< Updated upstream ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -<<<<<<< Updated upstream ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -======= -2022-07-25 15:13:42.256 - debug: [FS-LOGGER] Init. -2022-07-25 15:13:42.320 - info: [Router] Inject api: attachment/index -2022-07-25 15:38:44.180 - error: [FS-ERRHD] ->>>>>>> Stashed changes ->>>>>>> Stashed changes ->>>>>>> Stashed changes +2022-08-26 10:43:13.882 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, -<<<<<<< Updated upstream -<<<<<<< HEAD - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=677d4484-e448-4fa6-b944-3a19f5e4b62d', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=5daa3b44-d8d1-4902-a92d-1a4895094480&level=%E6%9D%91', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -<<<<<<< Updated upstream -<<<<<<< HEAD - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=677d4484-e448-4fa6-b944-3a19f5e4b62d', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=5daa3b44-d8d1-4902-a92d-1a4895094480&level=%E6%9D%91', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -<<<<<<< Updated upstream - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=5daa3b44-d8d1-4902-a92d-1a4895094480&level=%E6%9D%91', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/bridge?token=98d387e9-72b0-40aa-aa19-d59fc939b5ff', ->>>>>>> Stashed changes ->>>>>>> Stashed changes ->>>>>>> Stashed changes + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', -<<<<<<< HEAD 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '677d4484-e448-4fa6-b944-3a19f5e4b62d', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', -======= - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', -<<<<<<< Updated upstream -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= -<<<<<<< Updated upstream -======= -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes ->>>>>>> Stashed changes - referer: 'http://localhost:5000/fillion/transportation', -======= - referer: 'http://localhost:5000/fillion/bridge', ->>>>>>> Stashed changes - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 }, encoding: null, followRedirect: true, @@ -3601,167 +4055,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< Updated upstream -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes -<<<<<<< HEAD + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 16:26:58.908 - error: [FS-ERRHD] -======= -<<<<<<< Updated upstream -======= -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes ->>>>>>> Stashed changes - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -<<<<<<< Updated upstream -2022-07-25 10:26:07.826 - error: [FS-ERRHD] -<<<<<<< Updated upstream ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -<<<<<<< Updated upstream ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -======= -2022-07-25 17:02:36.573 - debug: [FS-LOGGER] Init. -2022-07-25 17:04:02.936 - debug: [FS-LOGGER] Init. -2022-07-25 17:37:34.307 - error: [FS-ERRHD] ->>>>>>> Stashed changes ->>>>>>> Stashed changes ->>>>>>> Stashed changes +2022-08-26 10:45:27.843 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, -<<<<<<< Updated upstream -<<<<<<< HEAD - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=677d4484-e448-4fa6-b944-3a19f5e4b62d', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=5daa3b44-d8d1-4902-a92d-1a4895094480&level=%E5%8E%BF', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -<<<<<<< Updated upstream -<<<<<<< HEAD - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=677d4484-e448-4fa6-b944-3a19f5e4b62d', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=5daa3b44-d8d1-4902-a92d-1a4895094480&level=%E5%8E%BF', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -<<<<<<< Updated upstream - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=5daa3b44-d8d1-4902-a92d-1a4895094480&level=%E5%8E%BF', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=9fd08492-433d-4ddf-ad83-bfd864e63bfc', ->>>>>>> Stashed changes ->>>>>>> Stashed changes ->>>>>>> Stashed changes + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', -<<<<<<< Updated upstream -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes -<<<<<<< HEAD - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '677d4484-e448-4fa6-b944-3a19f5e4b62d', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= -<<<<<<< Updated upstream -======= -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes ->>>>>>> Stashed changes - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -<<<<<<< Updated upstream ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -<<<<<<< Updated upstream ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -======= 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '9fd08492-433d-4ddf-ad83-bfd864e63bfc', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', ->>>>>>> Stashed changes ->>>>>>> Stashed changes ->>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', -<<<<<<< Updated upstream -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= -<<<<<<< Updated upstream -======= -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes ->>>>>>> Stashed changes - referer: 'http://localhost:5000/fillion/transportation', -======= - referer: 'http://localhost:5000/fillion/promotional', ->>>>>>> Stashed changes - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 }, encoding: null, followRedirect: true, @@ -3774,100 +4114,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< Updated upstream -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes -<<<<<<< HEAD + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 17:10:33.214 - error: [FS-ERRHD] -======= -<<<<<<< Updated upstream -======= -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes ->>>>>>> Stashed changes - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -<<<<<<< Updated upstream -2022-07-25 11:28:13.352 - error: [FS-ERRHD] -======= -2022-07-25 19:22:34.962 - error: [FS-ERRHD] ->>>>>>> Stashed changes +2022-08-26 10:45:27.846 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, -<<<<<<< Updated upstream - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=9fd08492-433d-4ddf-ad83-bfd864e63bfc', ->>>>>>> Stashed changes + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', -<<<<<<< Updated upstream - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '9fd08492-433d-4ddf-ad83-bfd864e63bfc', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', ->>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', -<<<<<<< Updated upstream - referer: 'http://localhost:5000/fillion/transportation', -======= - referer: 'http://localhost:5000/fillion/promotional', ->>>>>>> Stashed changes + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -3880,91 +4173,58 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< Updated upstream - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -<<<<<<< Updated upstream -2022-07-25 15:46:29.372 - error: [FS-ERRHD] -======= -2022-07-26 14:17:21.455 - error: [FS-ERRHD] ->>>>>>> Stashed changes +2022-08-26 10:45:27.860 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, -<<<<<<< Updated upstream - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'content-length': '1887', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/publicity?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', ->>>>>>> Stashed changes + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, -<<<<<<< Updated upstream - method: 'PUT', - body: '{"routeName":"袁渡-进贤文港","routeCode":"X943360121","sectionNo":"005","townshipCode":"360121200000","startingPlaceName":"桥","startStation":"1.849","categoryOfStartingPointAndDividingPoint":"非界点","stopPlaceName":"堤顶","categoryOfDeadCenterAndDividingPoint":"非界点","stopStation":"2.051","sectionType":"双向","serialNumberOfOriginalSection":"你换个","routeLevel":"不能同房","natureOfRoadSection":"正常路段","completionTime":"2003-01","reconstructionTime":"2018-12","natureOfConstruction":"重建","landforms":"平原","natureOfCharges":"非收费","numberOfCulverts":"0","technicalLevel":"三级公路","pavementType":"沥青混凝土","pavementWidth":"6.5","subgradeWidth":"7.5","laneCharacteristics":"双车道","whetherItIsOpenToTrafficInSunnyOrRainyDays":"是","designSpeedPerHour":"30","urbanManagementSectionOrNot":"否","managementAndMaintenanceUnit":"11101360121南昌市南昌县交通局","roadAdministrationUnit":"南昌县交通运输局","alimentation":"列养","sourceOfListedMaintenanceFunds":"燃油税","curingTime":"经常性","greeningMileage":"0.202","greeningMileaged":"0.202","plannedFundCategory":"其它","plannedYear":"2019","planDocumentNo":"赣路县字(2019)14号","planItemUniqueCode":"2018360121005","plannedProjectRouteCode":"X943360121","planProjectName":"黄马-桐源","plannedProjectType":"县道升级改造","completionStatus":"未完工","yearOfCompletion":"2020","reportingUnit":"361011000南昌市交通局","reasonForChange":"无变更","changeTime":"2020-11","whetherMaintenanceManagedHighway":"否","remarks":"2016路网调整","routeCodeOfLastYear":"X943360121","routeNameOfLastYear":"袁渡-进贤文港","startingStationOfLastYear":"1.849","lastYearsEndingPointStakeNumber":"2.051","graphicMileage":"0.202","chainageMileage":"0.202","districtcounty":"南昌县","locationCity":"南昌市","roadId":2800}', -======= method: 'GET', body: '[object Object]', ->>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -3972,76 +4232,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< Updated upstream - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -<<<<<<< Updated upstream -2022-07-25 15:52:40.728 - error: [FS-ERRHD] -======= -2022-07-26 14:17:27.274 - error: [FS-ERRHD] ->>>>>>> Stashed changes +2022-08-26 10:45:27.864 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, -<<<<<<< Updated upstream - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', ->>>>>>> Stashed changes + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', -<<<<<<< Updated upstream - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', ->>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', -<<<<<<< Updated upstream - referer: 'http://localhost:5000/fillion/transportation', -======= - referer: 'http://localhost:5000/fillion/promotional', ->>>>>>> Stashed changes + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4054,91 +4291,58 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< Updated upstream - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -<<<<<<< Updated upstream -2022-07-25 16:01:11.229 - error: [FS-ERRHD] -======= -2022-07-26 14:28:18.208 - error: [FS-ERRHD] ->>>>>>> Stashed changes +2022-08-26 10:45:27.866 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, -<<<<<<< Updated upstream - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'content-length': '1621', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/publicity?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', ->>>>>>> Stashed changes + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, -<<<<<<< Updated upstream - method: 'PUT', - body: '{"categoryOfDeadCenterAndDividingPoint":"非界点","stopStation":"2.051","sectionType":"双向","serialNumberOfOriginalSection":"你和","natureOfRoadSection":"正常路段","completionTime":"2003-01","reconstructionTime":"2018-12","natureOfConstruction":"重建","landforms":"平原","natureOfCharges":"非收费","numberOfCulverts":"0","technicalLevel":"三级公路","pavementType":"沥青混凝土","pavementWidth":"6.5","subgradeWidth":"7.5","laneCharacteristics":"双车道","whetherItIsOpenToTrafficInSunnyOrRainyDays":"是","designSpeedPerHour":"30","urbanManagementSectionOrNot":"否","managementAndMaintenanceUnit":"11101360121南昌市南昌县交通局","roadAdministrationUnit":"南昌县交通运输局","alimentation":"列养","sourceOfListedMaintenanceFunds":"燃油税","curingTime":"经常性","greeningMileage":"0.202","greeningMileaged":"0.202","plannedFundCategory":"其它","plannedYear":"2019","planDocumentNo":"赣路县字(2019)14号","planItemUniqueCode":"2018360121005","plannedProjectRouteCode":"X943360121","planProjectName":"黄马-桐源","plannedProjectType":"县道升级改造","completionStatus":"未完工","yearOfCompletion":"2020","reportingUnit":"361011000南昌市交通局","reasonForChange":"无变更","changeTime":"2020-11","whetherMaintenanceManagedHighway":"否","remarks":"2016路网调整","routeCodeOfLastYear":"X943360121","routeNameOfLastYear":"袁渡-进贤文港","startingStationOfLastYear":"1.849","lastYearsEndingPointStakeNumber":"2.051","graphicMileage":"0.202","chainageMileage":"0.202","districtcounty":"南昌县","locationCity":"南昌市","roadId":2800}', -======= method: 'GET', body: '[object Object]', ->>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -4146,76 +4350,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< Updated upstream - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -<<<<<<< Updated upstream -2022-07-25 16:11:10.293 - error: [FS-ERRHD] -======= -2022-07-26 14:41:20.032 - error: [FS-ERRHD] ->>>>>>> Stashed changes +2022-08-26 10:45:27.869 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, -<<<<<<< Updated upstream - url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=df45f1e7-883c-4a06-85aa-cf985043c25f', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', ->>>>>>> Stashed changes + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', -<<<<<<< Updated upstream - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', ->>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', -<<<<<<< Updated upstream - referer: 'http://localhost:5000/fillion/transportation', -======= - referer: 'http://localhost:5000/fillion/promotional', ->>>>>>> Stashed changes + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4228,46 +4409,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< Updated upstream - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-25 16:14:44.623 - error: [FS-ERRHD] +2022-08-26 10:45:48.871 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', + expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4280,53 +4468,58 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-25 16:20:37.830 - error: [FS-ERRHD] +2022-08-26 10:45:48.887 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'content-length': '1803', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - expires: '-1', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', + expires: '-1', accept: '*/*', - origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'PUT', - body: '{"routeName":"袁渡-进贤文港草草草草","routeCode":"X943360121","sectionNo":"004","townshipCode":"360121200000","startingPlaceName":"桥口","startStation":"1.051","categoryOfStartingPointAndDividingPoint":"非界点","stopPlaceName":"桥","categoryOfDeadCenterAndDividingPoint":"非界点","stopStation":"1.849","sectionType":"双向","natureOfRoadSection":"正常路段","completionTime":"2019-11","natureOfConstruction":"新建","landforms":"微丘","natureOfCharges":"非收费","numberOfCulverts":"0","technicalLevel":"三级公路","pavementType":"沥青混凝土","pavementWidth":"6.5","subgradeWidth":"7.5","laneCharacteristics":"双车道","whetherItIsOpenToTrafficInSunnyOrRainyDays":"是","designSpeedPerHour":"30","urbanManagementSectionOrNot":"否","managementAndMaintenanceUnit":"11101360121南昌市南昌县交通局","roadAdministrationUnit":"南昌县交通运输局","alimentation":"列养","sourceOfListedMaintenanceFunds":"其他","curingTime":"经常性","greeningMileage":"0.798","greeningMileaged":"0.798","plannedFundCategory":"其它","plannedYear":"2019","planDocumentNo":"赣路县字(2019)14号","planItemUniqueCode":"2018360121005","plannedProjectRouteCode":"X943360121","planProjectName":"黄马-桐源","plannedProjectType":"县道升级改造","completionStatus":"未完工","yearOfCompletion":"2020","reportingUnit":"361011211南昌县交通局","reasonForChange":"无变更","changeTime":"2020-11","whetherMaintenanceManagedHighway":"否","remarks":"新增道路","routeCodeOfLastYear":"X943360121","routeNameOfLastYear":"袁渡-进贤文港","startingStationOfLastYear":"1.051","lastYearsEndingPointStakeNumber":"1.849","graphicMileage":"0.802","chainageMileage":"0.798","districtcounty":"南昌县","locationCity":"南昌市","level":"县","roadId":2799}', + method: 'GET', + body: '[object Object]', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -4334,64 +4527,58 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-25 17:13:48.396 - error: [FS-ERRHD] ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 +2022-08-26 10:45:48.920 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/login', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'content-length': '55', -<<<<<<< HEAD - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', -======= 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', - origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', -<<<<<<< HEAD - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', + method: 'GET', + body: '[object Object]', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -4399,80 +4586,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< HEAD + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 19:33:14.728 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.60.68:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.60.68', - port: 443 -======= - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-25 17:20:38.059 - debug: [FS-LOGGER] Init. -2022-07-25 17:20:38.539 - info: [Router] Inject api: attachment/index -2022-07-26 08:24:40.399 - error: [FS-ERRHD] +2022-08-26 10:45:48.923 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', cause: { errno: 'ETIMEDOUT', code: 'ETIMEDOUT', syscall: 'connect', - address: '10.8.30.7', - port: 14000 ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 + address: '10.8.30.157', + port: 9119 }, error: { '$ref': '$["cause"]' }, options: { jar: false, -<<<<<<< HEAD - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/road_manage?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4485,47 +4645,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.60.68:443\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-25 19:44:17.724 - error: [FS-ERRHD] +2022-08-26 10:45:48.925 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4538,46 +4704,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-25 21:31:50.491 - error: [FS-ERRHD] +2022-08-26 10:45:48.929 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4590,46 +4763,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 09:31:23.413 - error: [FS-ERRHD] +2022-08-26 10:46:09.921 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4642,46 +4822,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 09:45:24.340 - error: [FS-ERRHD] +2022-08-26 10:46:09.936 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4694,46 +4881,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 14:03:06.926 - error: [FS-ERRHD] +2022-08-26 10:46:10.981 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4746,46 +4940,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 14:13:08.793 - error: [FS-ERRHD] +2022-08-26 10:46:10.996 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4798,46 +4999,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 14:22:55.765 - error: [FS-ERRHD] +2022-08-26 10:46:10.999 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4850,46 +5058,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 14:28:54.441 - error: [FS-ERRHD] +2022-08-26 10:46:11.003 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4902,46 +5117,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 14:31:44.233 - error: [FS-ERRHD] +2022-08-26 10:46:11.005 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -4954,44 +5176,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:05:17.376 - error: [FS-ERRHD] +2022-08-26 10:46:11.012 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5006,96 +5235,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:25:47.595 - error: [FS-ERRHD] +2022-08-26 10:46:32.019 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:26:54.234 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5110,44 +5294,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:31:38.399 - error: [FS-ERRHD] +2022-08-26 10:46:32.036 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5162,44 +5353,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:32:47.830 - error: [FS-ERRHD] +2022-08-26 10:46:32.039 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5214,44 +5412,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:32:53.702 - error: [FS-ERRHD] +2022-08-26 10:46:37.136 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5266,44 +5471,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:33:31.989 - error: [FS-ERRHD] +2022-08-26 10:46:37.152 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5318,44 +5530,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:34:30.724 - error: [FS-ERRHD] +2022-08-26 10:46:37.155 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5370,45 +5589,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:37:40.347 - error: [FS-ERRHD] +2022-08-26 10:46:37.158 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5423,44 +5648,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:37:56.314 - error: [FS-ERRHD] +2022-08-26 10:46:37.160 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5475,44 +5707,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:39:01.155 - error: [FS-ERRHD] +2022-08-26 10:46:37.168 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5527,44 +5766,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:45:51.476 - error: [FS-ERRHD] +2022-08-26 10:46:58.181 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5579,44 +5825,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:46:42.295 - error: [FS-ERRHD] +2022-08-26 10:46:58.214 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5631,44 +5884,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:46:49.635 - error: [FS-ERRHD] +2022-08-26 10:46:58.220 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5683,44 +5943,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:49:05.976 - error: [FS-ERRHD] +2022-08-26 10:47:22.475 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5735,45 +6002,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:49:59.409 - error: [FS-ERRHD] +2022-08-26 10:47:22.490 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5788,44 +6061,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:50:02.336 - error: [FS-ERRHD] +2022-08-26 10:47:22.493 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5840,44 +6120,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:50:44.803 - error: [FS-ERRHD] +2022-08-26 10:47:22.496 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5892,44 +6179,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:50:55.510 - error: [FS-ERRHD] +2022-08-26 10:47:22.498 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5944,44 +6238,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:51:02.542 - error: [FS-ERRHD] +2022-08-26 10:47:22.506 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -5996,44 +6297,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:51:38.453 - error: [FS-ERRHD] +2022-08-26 10:47:43.520 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6048,44 +6356,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:52:12.135 - error: [FS-ERRHD] +2022-08-26 10:47:43.536 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6100,44 +6415,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:52:30.917 - error: [FS-ERRHD] +2022-08-26 10:47:43.539 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6152,44 +6474,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:52:51.557 - error: [FS-ERRHD] +2022-08-26 10:52:08.875 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6204,44 +6533,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:55:53.353 - error: [FS-ERRHD] +2022-08-26 10:52:08.880 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6256,44 +6592,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:56:21.605 - error: [FS-ERRHD] +2022-08-26 10:52:08.882 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6308,44 +6651,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:57:51.983 - error: [FS-ERRHD] +2022-08-26 10:52:08.885 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6360,44 +6710,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:57:59.909 - error: [FS-ERRHD] +2022-08-26 10:52:08.887 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6412,44 +6769,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:58:07.737 - error: [FS-ERRHD] +2022-08-26 10:52:08.890 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6464,44 +6828,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:58:39.343 - error: [FS-ERRHD] +2022-08-26 10:52:29.922 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6516,44 +6887,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:59:44.352 - error: [FS-ERRHD] +2022-08-26 10:52:29.924 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6568,44 +6946,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:00:13.758 - error: [FS-ERRHD] +2022-08-26 10:52:29.927 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6620,44 +7005,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:00:29.556 - error: [FS-ERRHD] +2022-08-26 10:52:29.930 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6672,44 +7064,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:02:49.458 - error: [FS-ERRHD] +2022-08-26 10:52:29.932 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6724,44 +7123,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:03:11.150 - error: [FS-ERRHD] +2022-08-26 10:52:29.936 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/road_manage?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6776,44 +7182,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:03:55.054 - error: [FS-ERRHD] +2022-08-26 10:53:43.899 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6828,44 +7241,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:06:27.365 - error: [FS-ERRHD] +2022-08-26 10:53:43.913 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6880,44 +7300,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:06:57.285 - error: [FS-ERRHD] +2022-08-26 10:53:43.915 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6932,44 +7359,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:10:37.727 - error: [FS-ERRHD] +2022-08-26 10:53:43.917 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -6984,44 +7418,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:12:12.006 - error: [FS-ERRHD] +2022-08-26 10:53:43.919 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -7036,44 +7477,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:13:19.972 - error: [FS-ERRHD] +2022-08-26 10:53:43.960 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -7088,44 +7536,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:17:03.477 - error: [FS-ERRHD] +2022-08-26 10:54:04.954 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -7140,44 +7595,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:17:23.022 - error: [FS-ERRHD] +2022-08-26 10:54:04.967 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -7192,44 +7654,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:19:46.467 - error: [FS-ERRHD] +2022-08-26 10:54:04.970 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -7244,44 +7713,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:21:04.386 - error: [FS-ERRHD] +2022-08-26 10:54:04.972 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/road_manage?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -7296,44 +7772,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:23:37.276 - error: [FS-ERRHD] +2022-08-26 10:54:04.974 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -7348,45 +7831,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:24:34.917 - error: [FS-ERRHD] +2022-08-26 10:54:05.015 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -7401,44 +7890,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:25:28.568 - error: [FS-ERRHD] +2022-08-26 11:03:21.096 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -7453,44 +7949,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:25:53.881 - error: [FS-ERRHD] +2022-08-26 11:03:21.108 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -7505,46 +8008,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:27:36.001 - error: [FS-ERRHD] +2022-08-26 11:03:21.110 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -7557,45 +8067,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:27:53.545 - error: [FS-ERRHD] +2022-08-26 11:03:21.113 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, @@ -7610,46 +8126,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:28:00.553 - error: [FS-ERRHD] +2022-08-26 11:03:21.115 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -7662,46 +8185,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:28:23.515 - error: [FS-ERRHD] +2022-08-26 11:03:21.117 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -7714,46 +8244,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:28:46.863 - error: [FS-ERRHD] +2022-08-26 11:03:42.148 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -7766,46 +8303,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:40:55.481 - error: [FS-ERRHD] +2022-08-26 11:03:42.160 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/road_manage?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -7818,46 +8362,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:58:09.728 - error: [FS-ERRHD] +2022-08-26 11:03:42.164 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -7870,46 +8421,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:58:50.269 - error: [FS-ERRHD] +2022-08-26 11:03:42.167 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -7922,46 +8480,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:59:09.075 - error: [FS-ERRHD] +2022-08-26 11:03:42.175 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -7974,46 +8539,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:59:38.062 - error: [FS-ERRHD] +2022-08-26 11:03:42.179 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8026,46 +8598,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:59:56.784 - error: [FS-ERRHD] +2022-08-26 11:04:01.650 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8078,46 +8657,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:59:58.544 - error: [FS-ERRHD] +2022-08-26 11:04:01.678 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8130,46 +8716,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:19.330 - error: [FS-ERRHD] +2022-08-26 11:04:01.693 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8182,46 +8775,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:20.986 - error: [FS-ERRHD] +2022-08-26 11:04:01.696 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8234,46 +8834,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:23.433 - error: [FS-ERRHD] +2022-08-26 11:04:01.698 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8286,46 +8893,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:39.942 - error: [FS-ERRHD] +2022-08-26 11:04:01.709 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8338,46 +8952,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:39.946 - error: [FS-ERRHD] +2022-08-26 11:04:22.698 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, + error: { '$ref': '$["cause"]' }, + options: { + jar: false, + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8390,46 +9011,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:41.684 - error: [FS-ERRHD] +2022-08-26 11:04:22.730 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8442,46 +9070,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:41.685 - error: [FS-ERRHD] +2022-08-26 11:04:22.745 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8494,46 +9129,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:01:00.953 - error: [FS-ERRHD] +2022-08-26 11:04:22.748 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/road_manage?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8546,46 +9188,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:03:05.868 - error: [FS-ERRHD] +2022-08-26 11:04:22.750 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8598,46 +9247,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:05:04.867 - error: [FS-ERRHD] +2022-08-26 11:04:22.760 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8650,46 +9306,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:05:26.206 - error: [FS-ERRHD] +2022-08-26 11:04:43.747 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8702,46 +9365,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:05:36.978 - error: [FS-ERRHD] +2022-08-26 11:04:43.763 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8754,46 +9424,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:06:00.888 - error: [FS-ERRHD] +2022-08-26 11:04:43.778 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8806,46 +9483,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:06:10.106 - error: [FS-ERRHD] +2022-08-26 11:04:43.780 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8858,46 +9542,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:06:15.381 - error: [FS-ERRHD] +2022-08-26 11:04:43.794 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8910,46 +9601,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:06:16.545 - error: [FS-ERRHD] +2022-08-26 11:04:43.809 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -8962,46 +9660,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:06:39.726 - error: [FS-ERRHD] +2022-08-26 11:05:04.794 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/transportation/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -9014,46 +9719,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:06:48.057 - error: [FS-ERRHD] +2022-08-26 11:05:04.809 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -9066,46 +9778,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:07:26.215 - error: [FS-ERRHD] +2022-08-26 11:05:04.825 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/manage/overspeed?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -9118,46 +9837,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:08:00.257 - error: [FS-ERRHD] +2022-08-26 11:05:04.829 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/build/road_state?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -9170,46 +9896,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:09:26.353 - error: [FS-ERRHD] +2022-08-26 11:05:04.841 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/road_manage?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -9222,47 +9955,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:09:52.959 - error: [FS-ERRHD] +2022-08-26 11:05:04.857 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/conserve/statistic?token=2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '2c7bab74-3aea-40a2-bdd7-b6b232f99d8b', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -9275,51 +10014,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:10:11.506 - error: [FS-ERRHD] +2022-08-26 11:09:38.026 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.63', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:4000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/signin', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -9327,51 +10075,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:10:25.777 - error: [FS-ERRHD] +2022-08-26 11:10:05.791 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.63', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:4000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:4000/signin', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -9379,46 +10136,62 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:13:41.089 - error: [FS-ERRHD] +2022-08-26 11:12:52.829 - debug: [FS-LOGGER] Init. +2022-08-26 11:12:53.127 - info: [Router] Inject api: attachment/index +2022-08-26 11:17:00.275 - debug: [FS-LOGGER] Init. +2022-08-26 11:17:00.339 - info: [Router] Inject api: attachment/index +2022-08-26 11:18:33.149 - debug: [FS-LOGGER] Init. +2022-08-26 11:18:33.212 - info: [Router] Inject api: attachment/index +2022-08-29 15:59:06.957 - debug: [FS-LOGGER] Init. +2022-08-29 15:59:09.627 - info: [Router] Inject api: attachment/index +2022-08-29 16:03:07.691 - debug: [FS-LOGGER] Init. +2022-08-29 16:03:07.748 - info: [Router] Inject api: attachment/index +2022-08-29 16:03:58.503 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/department', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + expires: '-1', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', - expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -9431,51 +10204,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:14:18.023 - error: [FS-ERRHD] +2022-08-29 16:04:00.035 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -9483,51 +10265,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:14:46.577 - error: [FS-ERRHD] +2022-08-29 16:04:05.293 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -9535,51 +10326,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:14:59.928 - error: [FS-ERRHD] +2022-08-29 16:04:51.310 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -9587,51 +10387,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:15:57.071 - error: [FS-ERRHD] +2022-08-29 16:04:55.608 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -9639,51 +10448,62 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:15:59.349 - error: [FS-ERRHD] +2022-08-29 16:05:19.475 - debug: [FS-LOGGER] Init. +2022-08-29 16:05:19.533 - info: [Router] Inject api: attachment/index +2022-08-29 16:05:45.284 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -9691,52 +10511,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:17:19.019 - error: [FS-ERRHD] +2022-08-29 16:05:51.725 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -9744,51 +10572,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:17:25.934 - error: [FS-ERRHD] +2022-08-29 16:06:28.136 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -9796,44 +10633,52 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:17:30.086 - error: [FS-ERRHD] +2022-08-29 16:07:56.401 - debug: [FS-LOGGER] Init. +2022-08-29 16:07:56.455 - info: [Router] Inject api: attachment/index +2022-08-29 16:08:20.540 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/department', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', + expires: '-1', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'sec-ch-ua-platform': '"Windows"', - expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -9848,46 +10693,52 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:18:01.836 - error: [FS-ERRHD] +2022-08-29 16:08:30.434 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/department', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + expires: '-1', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', - expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -9900,51 +10751,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:18:07.556 - error: [FS-ERRHD] +2022-08-29 16:08:31.837 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -9952,51 +10812,62 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:18:41.436 - error: [FS-ERRHD] +2022-08-29 16:10:14.964 - debug: [FS-LOGGER] Init. +2022-08-29 16:10:15.035 - info: [Router] Inject api: attachment/index +2022-08-29 16:10:54.687 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 10.8.30.157:9118', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.8.30.157', + port: 9118 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9118/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9118', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -10004,44 +10875,47 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 10.8.30.157:9118\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:18:54.267 - error: [FS-ERRHD] +2022-08-29 16:12:16.813 - debug: [FS-LOGGER] Init. +2022-08-29 16:12:16.871 - info: [Router] Inject api: attachment/index +2022-08-30 09:03:26.970 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10056,44 +10930,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: read ECONNRESET\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:19:09.210 - error: [FS-ERRHD] +2022-08-30 09:03:35.424 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10108,44 +10989,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:22:58.898 - error: [FS-ERRHD] +2022-08-30 09:03:35.439 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10160,44 +11048,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:23:14.668 - error: [FS-ERRHD] +2022-08-30 09:03:35.445 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10212,44 +11107,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:25:18.074 - error: [FS-ERRHD] +2022-08-30 09:03:35.449 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10264,44 +11166,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:28:20.415 - error: [FS-ERRHD] +2022-08-30 09:03:35.455 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10316,44 +11225,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:36:52.345 - error: [FS-ERRHD] +2022-08-30 09:03:35.468 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10368,44 +11284,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:45:59.315 - error: [FS-ERRHD] +2022-08-30 09:03:35.473 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10420,44 +11343,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:49:54.833 - error: [FS-ERRHD] +2022-08-30 09:03:35.478 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10472,46 +11402,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:04:39.532 - error: [FS-ERRHD] +2022-08-30 09:03:35.489 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, + error: { '$ref': '$["cause"]' }, + options: { + jar: false, + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', + headers: { + host: 'localhost:14000', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -10524,46 +11461,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:04:40.707 - error: [FS-ERRHD] +2022-08-30 09:03:37.328 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -10576,44 +11520,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:04:40.709 - error: [FS-ERRHD] +2022-08-30 09:03:37.332 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10628,44 +11579,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:22:09.664 - error: [FS-ERRHD] +2022-08-30 09:03:37.335 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10680,46 +11638,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:28:27.382 - error: [FS-ERRHD] +2022-08-30 09:04:09.582 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -10732,46 +11697,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:28:27.388 - error: [FS-ERRHD] +2022-08-30 09:04:09.611 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -10784,44 +11756,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:28:27.389 - error: [FS-ERRHD] +2022-08-30 09:04:09.617 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10836,44 +11815,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:28:27.393 - error: [FS-ERRHD] +2022-08-30 09:04:09.621 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10888,44 +11874,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:30:02.537 - error: [FS-ERRHD] +2022-08-30 09:04:09.624 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -10940,46 +11933,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:30:17.508 - error: [FS-ERRHD] +2022-08-30 09:04:09.632 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -10992,46 +11992,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:31:24.966 - error: [FS-ERRHD] +2022-08-30 09:04:09.636 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11044,46 +12051,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:38:09.356 - error: [FS-ERRHD] +2022-08-30 09:04:09.640 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11096,46 +12110,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:40:43.928 - error: [FS-ERRHD] +2022-08-30 09:04:09.644 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11148,44 +12169,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:40:43.962 - error: [FS-ERRHD] +2022-08-30 09:04:11.171 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -11200,46 +12228,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:40:43.964 - error: [FS-ERRHD] +2022-08-30 09:04:11.175 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11252,46 +12287,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:44:00.820 - error: [FS-ERRHD] +2022-08-30 09:04:11.179 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11304,44 +12346,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:44:01.004 - error: [FS-ERRHD] +2022-08-30 09:04:28.300 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -11356,46 +12405,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:45:32.505 - error: [FS-ERRHD] +2022-08-30 09:04:28.316 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11408,46 +12464,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:45:32.510 - error: [FS-ERRHD] +2022-08-30 09:04:28.322 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11460,46 +12523,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:46:12.458 - error: [FS-ERRHD] +2022-08-30 09:04:28.328 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11512,46 +12582,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:46:12.467 - error: [FS-ERRHD] +2022-08-30 09:04:28.333 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11564,46 +12641,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:46:12.470 - error: [FS-ERRHD] +2022-08-30 09:04:28.344 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11616,46 +12700,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:58:58.706 - error: [FS-ERRHD] +2022-08-30 09:04:28.348 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11668,47 +12759,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:04:12.892 - error: [FS-ERRHD] +2022-08-30 09:04:28.353 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11721,44 +12818,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:04:23.109 - error: [FS-ERRHD] +2022-08-30 09:04:28.358 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -11773,46 +12877,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:04:23.112 - error: [FS-ERRHD] +2022-08-30 09:04:29.796 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11825,46 +12936,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:05:25.304 - error: [FS-ERRHD] +2022-08-30 09:04:29.803 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11877,46 +12995,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:05:38.379 - error: [FS-ERRHD] +2022-08-30 09:04:29.812 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11929,46 +13054,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:10:03.259 - error: [FS-ERRHD] +2022-08-30 09:04:55.900 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -11981,46 +13113,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:14:35.006 - error: [FS-ERRHD] +2022-08-30 09:04:55.910 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12033,46 +13172,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:17:34.476 - error: [FS-ERRHD] +2022-08-30 09:04:55.916 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12085,46 +13231,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:21:01.435 - error: [FS-ERRHD] +2022-08-30 09:04:55.920 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12137,46 +13290,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:28:11.552 - error: [FS-ERRHD] +2022-08-30 09:04:55.923 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12189,46 +13349,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:29:18.090 - error: [FS-ERRHD] +2022-08-30 09:04:55.931 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12241,46 +13408,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:29:18.094 - error: [FS-ERRHD] +2022-08-30 09:04:55.934 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12293,44 +13467,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:29:18.095 - error: [FS-ERRHD] +2022-08-30 09:04:55.937 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -12345,46 +13526,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:29:18.096 - error: [FS-ERRHD] +2022-08-30 09:04:55.943 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12397,46 +13585,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:29:18.097 - error: [FS-ERRHD] +2022-08-30 09:04:56.823 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12449,46 +13644,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:29:18.102 - error: [FS-ERRHD] +2022-08-30 09:04:56.828 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12501,44 +13703,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:29:18.103 - error: [FS-ERRHD] +2022-08-30 09:04:56.831 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -12553,46 +13762,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:29:18.105 - error: [FS-ERRHD] +2022-08-30 09:06:14.711 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12605,46 +13821,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:30:14.980 - error: [FS-ERRHD] +2022-08-30 09:06:14.728 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12657,44 +13880,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:30:14.984 - error: [FS-ERRHD] +2022-08-30 09:06:14.731 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -12709,46 +13939,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:32:33.799 - error: [FS-ERRHD] +2022-08-30 09:06:14.735 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12761,46 +13998,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:35:26.957 - error: [FS-ERRHD] +2022-08-30 09:06:14.739 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12813,44 +14057,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:38:37.150 - error: [FS-ERRHD] +2022-08-30 09:06:14.752 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -12865,46 +14116,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:42:43.011 - error: [FS-ERRHD] +2022-08-30 09:06:14.757 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12917,46 +14175,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:44:42.076 - error: [FS-ERRHD] +2022-08-30 09:06:14.761 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -12969,44 +14234,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:44:43.835 - error: [FS-ERRHD] +2022-08-30 09:06:14.766 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -13021,44 +14293,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:44:43.837 - error: [FS-ERRHD] +2022-08-30 09:06:16.088 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -13073,46 +14352,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:44:43.928 - error: [FS-ERRHD] +2022-08-30 09:06:16.092 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13125,46 +14411,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:44:43.930 - error: [FS-ERRHD] +2022-08-30 09:06:16.094 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13177,46 +14470,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:45:20.980 - error: [FS-ERRHD] +2022-08-30 09:07:44.110 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13229,46 +14529,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:45:21.134 - error: [FS-ERRHD] +2022-08-30 09:07:44.126 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13281,46 +14588,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:46:00.276 - error: [FS-ERRHD] +2022-08-30 09:07:44.136 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13333,46 +14647,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:56:04.523 - error: [FS-ERRHD] +2022-08-30 09:07:44.142 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13385,46 +14706,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:56:14.460 - error: [FS-ERRHD] +2022-08-30 09:07:44.147 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13437,46 +14765,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:57:23.977 - error: [FS-ERRHD] +2022-08-30 09:07:44.201 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13489,46 +14824,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:58:21.654 - error: [FS-ERRHD] +2022-08-30 09:07:44.206 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13541,46 +14883,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:58:22.025 - error: [FS-ERRHD] +2022-08-30 09:07:44.210 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13593,46 +14942,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:58:25.060 - error: [FS-ERRHD] +2022-08-30 09:07:44.216 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13645,46 +15001,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:58:32.062 - error: [FS-ERRHD] +2022-08-30 09:07:44.767 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13697,52 +15060,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:58:32.631 - error: [FS-ERRHD] +2022-08-30 09:07:44.772 - error: [FS-ERRHD] { - message: 'Error: Client network socket disconnected before secure TLS connection was established', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - code: 'ECONNRESET', - path: null, - host: '3024-117-90-36-177.jp.ngrok.io', - port: 443, - localAddress: undefined + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13755,47 +15119,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: Client network socket disconnected before secure TLS connection was established\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:58:34.124 - error: [FS-ERRHD] +2022-08-30 09:07:44.777 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13808,47 +15178,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:39.189 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' +} +2022-08-30 09:08:54.550 - error: [FS-ERRHD] +{ + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13861,52 +15237,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:58:40.516 - error: [FS-ERRHD] +2022-08-30 09:08:54.560 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: -4039, - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '18.177.0.235', - port: 443 + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13919,53 +15296,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:58:43.081 - error: [FS-ERRHD] +2022-08-30 09:08:54.568 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: -4039, - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '18.177.0.235', - port: 443 + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -13978,53 +15355,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:58:53.110 - error: [FS-ERRHD] +2022-08-30 09:08:54.571 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: -4039, - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '18.177.0.235', - port: 443 + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14037,53 +15414,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:58:57.096 - error: [FS-ERRHD] +2022-08-30 09:08:54.574 - error: [FS-ERRHD] { - message: 'Error: Client network socket disconnected before secure TLS connection was established', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - code: 'ECONNRESET', - path: null, - host: '3024-117-90-36-177.jp.ngrok.io', - port: 443, - localAddress: undefined + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14096,47 +15473,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: Client network socket disconnected before secure TLS connection was established\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:58:59.070 - error: [FS-ERRHD] +2022-08-30 09:08:54.582 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14149,46 +15532,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:58:59.675 - error: [FS-ERRHD] +2022-08-30 09:08:54.587 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14201,52 +15591,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:59:00.238 - error: [FS-ERRHD] +2022-08-30 09:08:54.590 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 18.177.53.48:443', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: -4039, - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '18.177.53.48', - port: 443 + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14259,53 +15650,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.53.48:443\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:59:18.733 - error: [FS-ERRHD] +2022-08-30 09:08:54.594 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 18.177.53.48:443', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: -4039, - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '18.177.53.48', - port: 443 + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14318,53 +15709,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.53.48:443\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:59:18.735 - error: [FS-ERRHD] +2022-08-30 09:08:55.713 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 18.177.53.48:443', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: -4039, - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '18.177.53.48', - port: 443 + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14377,47 +15768,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.53.48:443\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:59:24.071 - error: [FS-ERRHD] +2022-08-30 09:08:55.720 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14430,44 +15827,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:59:24.830 - error: [FS-ERRHD] +2022-08-30 09:08:55.725 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -14482,44 +15886,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:59:26.949 - error: [FS-ERRHD] +2022-08-30 09:11:51.102 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -14534,46 +15945,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 19:59:32.149 - error: [FS-ERRHD] +2022-08-30 09:11:51.121 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14586,46 +16004,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:08:54.658 - error: [FS-ERRHD] +2022-08-30 09:11:51.125 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14638,46 +16063,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:13:54.930 - error: [FS-ERRHD] +2022-08-30 09:11:51.130 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14690,46 +16122,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:15:40.794 - error: [FS-ERRHD] +2022-08-30 09:11:51.134 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14742,46 +16181,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:17:26.854 - error: [FS-ERRHD] +2022-08-30 09:11:51.142 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14794,46 +16240,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:23:21.899 - error: [FS-ERRHD] +2022-08-30 09:11:51.146 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14846,46 +16299,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:26:55.570 - error: [FS-ERRHD] +2022-08-30 09:11:51.149 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14898,46 +16358,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:28:43.543 - error: [FS-ERRHD] +2022-08-30 09:11:51.152 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -14950,46 +16417,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:28:44.700 - error: [FS-ERRHD] +2022-08-30 09:11:52.109 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -15002,46 +16476,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:44.704 - error: [FS-ERRHD] + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' +} +2022-08-30 09:11:52.114 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -15054,46 +16535,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:28:44.707 - error: [FS-ERRHD] +2022-08-30 09:11:52.117 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -15106,46 +16594,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:31:33.345 - error: [FS-ERRHD] +2022-08-30 09:12:08.426 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -15158,44 +16653,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:32:12.538 - error: [FS-ERRHD] +2022-08-30 09:12:08.443 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -15210,44 +16712,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:33:07.854 - error: [FS-ERRHD] +2022-08-30 09:12:08.454 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -15262,44 +16771,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:34:11.067 - error: [FS-ERRHD] +2022-08-30 09:12:08.459 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -15314,46 +16830,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:34:12.705 - error: [FS-ERRHD] +2022-08-30 09:12:08.465 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -15366,46 +16889,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:34:12.706 - error: [FS-ERRHD] +2022-08-30 09:12:08.473 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -15418,46 +16948,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:35:20.149 - error: [FS-ERRHD] +2022-08-30 09:12:08.477 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -15470,45 +17007,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:35:35.882 - error: [FS-ERRHD] +2022-08-30 09:12:08.482 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -15523,46 +17066,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:36:12.902 - error: [FS-ERRHD] +2022-08-30 09:12:08.486 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -15575,44 +17125,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:37:54.674 - error: [FS-ERRHD] +2022-08-30 09:12:24.968 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -15627,46 +17184,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:39:51.831 - error: [FS-ERRHD] +2022-08-30 09:12:24.980 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -15679,46 +17243,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:41:18.189 - error: [FS-ERRHD] +2022-08-30 09:12:24.985 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -15731,44 +17302,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:41:55.589 - error: [FS-ERRHD] +2022-08-30 09:12:24.989 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -15783,46 +17361,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:43:58.004 - error: [FS-ERRHD] +2022-08-30 09:12:24.993 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -15835,44 +17420,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:44:09.699 - error: [FS-ERRHD] +2022-08-30 09:12:25.002 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -15887,44 +17479,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:44:25.521 - error: [FS-ERRHD] +2022-08-30 09:12:25.006 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -15939,46 +17538,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:44:59.643 - error: [FS-ERRHD] +2022-08-30 09:12:25.009 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -15991,46 +17597,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:46:12.533 - error: [FS-ERRHD] +2022-08-30 09:12:25.013 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -16043,46 +17656,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:46:12.537 - error: [FS-ERRHD] +2022-08-30 09:12:25.408 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -16095,44 +17715,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:46:15.642 - error: [FS-ERRHD] +2022-08-30 09:12:25.413 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -16147,46 +17774,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:46:51.662 - error: [FS-ERRHD] +2022-08-30 09:12:25.420 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -16199,46 +17833,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:47:34.958 - error: [FS-ERRHD] +2022-08-30 09:13:50.344 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -16251,45 +17892,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:48:57.031 - error: [FS-ERRHD] +2022-08-30 09:13:50.354 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -16304,44 +17951,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:48:59.933 - error: [FS-ERRHD] +2022-08-30 09:13:50.361 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -16356,44 +18010,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:49:29.672 - error: [FS-ERRHD] +2022-08-30 09:13:50.365 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -16408,46 +18069,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:49:29.687 - error: [FS-ERRHD] +2022-08-30 09:13:50.368 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -16460,46 +18128,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:52:41.535 - error: [FS-ERRHD] +2022-08-30 09:13:50.377 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -16512,46 +18187,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:56:42.627 - error: [FS-ERRHD] +2022-08-30 09:13:50.384 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -16564,44 +18246,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 20:57:44.721 - error: [FS-ERRHD] +2022-08-30 09:13:50.390 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -16616,46 +18305,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:02:33.291 - error: [FS-ERRHD] +2022-08-30 09:13:50.398 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -16668,46 +18364,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:07:13.391 - error: [FS-ERRHD] +2022-08-30 09:13:51.214 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -16720,44 +18423,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:07:15.767 - error: [FS-ERRHD] +2022-08-30 09:13:51.220 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -16772,46 +18482,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:07:15.769 - error: [FS-ERRHD] +2022-08-30 09:13:51.226 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -16824,46 +18541,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:08:04.134 - error: [FS-ERRHD] +2022-08-30 09:14:22.351 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -16876,44 +18600,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:14:19.167 - error: [FS-ERRHD] +2022-08-30 09:14:22.373 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -16928,44 +18659,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:16:32.432 - error: [FS-ERRHD] +2022-08-30 09:14:22.378 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -16980,46 +18718,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:32:21.786 - error: [FS-ERRHD] +2022-08-30 09:14:22.383 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17032,46 +18777,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:32:41.558 - error: [FS-ERRHD] +2022-08-30 09:14:22.388 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17084,46 +18836,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:33:36.605 - error: [FS-ERRHD] +2022-08-30 09:14:22.402 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17136,46 +18895,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:42:10.394 - error: [FS-ERRHD] +2022-08-30 09:14:22.407 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17188,46 +18954,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:45:22.643 - error: [FS-ERRHD] +2022-08-30 09:14:22.414 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17240,46 +19013,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:46:23.136 - error: [FS-ERRHD] +2022-08-30 09:14:22.421 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, + error: { '$ref': '$["cause"]' }, + options: { + jar: false, + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', + headers: { + host: 'localhost:14000', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17292,46 +19072,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:48:34.964 - error: [FS-ERRHD] +2022-08-30 09:14:23.519 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17344,46 +19131,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:50:02.409 - error: [FS-ERRHD] +2022-08-30 09:14:23.523 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17396,46 +19190,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:50:51.822 - error: [FS-ERRHD] +2022-08-30 09:14:23.528 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17448,46 +19249,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:50:53.115 - error: [FS-ERRHD] +2022-08-30 09:15:12.394 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17500,46 +19308,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:53:27.667 - error: [FS-ERRHD] +2022-08-30 09:15:12.456 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17552,46 +19367,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:55:28.463 - error: [FS-ERRHD] +2022-08-30 09:15:12.463 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17604,47 +19426,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:55:37.153 - error: [FS-ERRHD] +2022-08-30 09:15:12.467 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17657,46 +19485,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:57:25.485 - error: [FS-ERRHD] +2022-08-30 09:15:12.471 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17709,46 +19544,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 21:57:36.148 - error: [FS-ERRHD] +2022-08-30 09:15:12.489 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17761,46 +19603,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:00:43.357 - error: [FS-ERRHD] +2022-08-30 09:15:12.492 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17813,47 +19662,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:00:50.962 - error: [FS-ERRHD] +2022-08-30 09:15:12.496 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17866,46 +19721,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:02:19.314 - error: [FS-ERRHD] +2022-08-30 09:15:12.507 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17918,46 +19780,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:02:53.027 - error: [FS-ERRHD] +2022-08-30 09:15:14.048 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -17970,46 +19839,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:03:15.054 - error: [FS-ERRHD] +2022-08-30 09:15:14.051 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18022,46 +19898,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:03:23.393 - error: [FS-ERRHD] +2022-08-30 09:15:14.054 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18074,46 +19957,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:03:27.269 - error: [FS-ERRHD] +2022-08-30 09:16:00.684 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18126,46 +20016,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:04:27.760 - error: [FS-ERRHD] +2022-08-30 09:16:00.697 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18178,46 +20075,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:04:29.375 - error: [FS-ERRHD] +2022-08-30 09:16:00.701 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18230,46 +20134,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:04:35.922 - error: [FS-ERRHD] +2022-08-30 09:16:00.707 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18282,46 +20193,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:04:40.266 - error: [FS-ERRHD] +2022-08-30 09:16:00.715 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18334,46 +20252,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:04:49.383 - error: [FS-ERRHD] +2022-08-30 09:16:00.725 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18386,46 +20311,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:08:06.879 - error: [FS-ERRHD] +2022-08-30 09:16:00.732 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18438,46 +20370,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:10:26.322 - error: [FS-ERRHD] +2022-08-30 09:16:00.737 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18490,46 +20429,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:10:51.475 - error: [FS-ERRHD] +2022-08-30 09:16:00.743 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18542,46 +20488,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:11:40.375 - error: [FS-ERRHD] +2022-08-30 09:16:02.799 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18594,46 +20547,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:11:57.822 - error: [FS-ERRHD] +2022-08-30 09:16:02.804 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18646,46 +20606,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:13:02.792 - error: [FS-ERRHD] +2022-08-30 09:16:02.808 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18698,46 +20665,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:15:37.545 - error: [FS-ERRHD] +2022-08-30 09:17:15.654 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18750,46 +20724,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:15:53.416 - error: [FS-ERRHD] +2022-08-30 09:17:15.670 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18802,46 +20783,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:16:00.837 - error: [FS-ERRHD] +2022-08-30 09:17:15.675 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18854,46 +20842,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:16:44.550 - error: [FS-ERRHD] +2022-08-30 09:17:15.680 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18906,46 +20901,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:19:17.435 - error: [FS-ERRHD] +2022-08-30 09:17:15.683 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -18958,52 +20960,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:19:24.642 - error: [FS-ERRHD] +2022-08-30 09:17:15.693 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 18.176.183.3:443', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: -4039, - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '18.176.183.3', - port: 443 + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -19016,47 +21019,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.176.183.3:443\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:19:37.245 - error: [FS-ERRHD] +2022-08-30 09:17:15.697 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -19069,53 +21078,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:19:38.483 - error: [FS-ERRHD] +2022-08-30 09:17:15.701 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 18.176.183.3:443', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: -4039, - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '18.176.183.3', - port: 443 + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -19128,53 +21137,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.176.183.3:443\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:19:45.708 - error: [FS-ERRHD] +2022-08-30 09:17:15.705 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: -4039, - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '18.177.0.235', - port: 443 + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -19187,47 +21196,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:19:54.873 - error: [FS-ERRHD] +2022-08-30 09:17:17.042 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -19240,46 +21255,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:20:05.128 - error: [FS-ERRHD] +2022-08-30 09:17:17.048 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -19292,47 +21314,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 22:20:17.088 - error: [FS-ERRHD] +2022-08-30 09:17:17.051 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -19345,44 +21373,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-27 08:52:53.296 - error: [FS-ERRHD] +2022-08-30 09:17:41.615 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -19397,44 +21432,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-27 08:55:02.416 - error: [FS-ERRHD] +2022-08-30 09:17:41.636 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -19449,44 +21491,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 09:02:58.014 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' +} +2022-08-30 09:17:41.639 - error: [FS-ERRHD] +{ + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -19501,44 +21550,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-27 09:16:10.592 - error: [FS-ERRHD] +2022-08-30 09:17:41.643 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -19553,44 +21609,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-27 09:22:21.685 - error: [FS-ERRHD] +2022-08-30 09:17:41.648 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -19605,44 +21668,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-27 10:17:42.286 - error: [FS-ERRHD] +2022-08-30 09:17:41.660 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -19657,66 +21727,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-27 10:43:25.730 - debug: [FS-LOGGER] Init. -2022-07-27 10:58:49.630 - error: [FS-ERRHD] +2022-08-30 09:17:41.665 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=8b9717fe-80d5-48a4-a364-d78045b3d249', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '10.8.30.7:14000', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '8b9717fe-80d5-48a4-a364-d78045b3d249', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', -======= - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 }, encoding: null, followRedirect: true, @@ -19729,48 +21786,13 @@ transform2xxOnly: false }, response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketOnEnd (_http_client.js:485:9)\n' + - ' at Socket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 10:58:49.634 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=8b9717fe-80d5-48a4-a364-d78045b3d249', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '8b9717fe-80d5-48a4-a364-d78045b3d249', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -19778,45 +21800,39 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 08:24:50.233 - error: [FS-ERRHD] +2022-08-30 09:17:41.671 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '10.8.30.7', + address: '127.0.0.1', port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '10.8.30.7:14000', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 + expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 }, encoding: null, followRedirect: true, @@ -19829,48 +21845,13 @@ transform2xxOnly: false }, response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketOnEnd (_http_client.js:485:9)\n' + - ' at Socket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 11:03:27.808 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -19878,45 +21859,39 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 08:24:50.640 - error: [FS-ERRHD] +2022-08-30 09:17:41.674 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '10.8.30.7', + address: '127.0.0.1', port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '10.8.30.7:14000', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 + expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 }, encoding: null, followRedirect: true, @@ -19929,49 +21904,13 @@ transform2xxOnly: false }, response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 11:03:27.813 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -19979,45 +21918,39 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 08:31:48.455 - error: [FS-ERRHD] +2022-08-30 09:17:42.920 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '10.8.30.7', + address: '127.0.0.1', port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '10.8.30.7:14000', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 + expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 }, encoding: null, followRedirect: true, @@ -20030,29 +21963,13 @@ transform2xxOnly: false }, response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -20060,38 +21977,39 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 08:31:48.847 - error: [FS-ERRHD] +2022-08-30 09:17:42.925 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '10.8.30.7', + address: '127.0.0.1', port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '10.8.30.7:14000', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', + expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -20104,13 +22022,13 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -20118,38 +22036,39 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 08:33:03.454 - error: [FS-ERRHD] +2022-08-30 09:17:42.930 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '10.8.30.7', + address: '127.0.0.1', port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/vehicle?token=3de82f98-253d-4ebd-a444-eff69920459b', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '10.8.30.7:14000', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', + expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -20162,13 +22081,13 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -20176,38 +22095,39 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 08:33:05.740 - error: [FS-ERRHD] +2022-08-30 09:20:49.047 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '10.8.30.7', + address: '127.0.0.1', port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/vehicle/specific?token=3de82f98-253d-4ebd-a444-eff69920459b&%E5%87%BA%E7%A7%9F%E8%BD%A6', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '10.8.30.7:14000', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', + expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -20220,13 +22140,13 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -20234,38 +22154,39 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 08:33:06.536 - error: [FS-ERRHD] +2022-08-30 09:20:49.059 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '10.8.30.7', + address: '127.0.0.1', port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/vehicle/specific?token=3de82f98-253d-4ebd-a444-eff69920459b&%E5%8D%B1%E8%B4%A7', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '10.8.30.7:14000', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', + expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -20278,24 +22199,13 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -20303,56 +22213,39 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -<<<<<<< Updated upstream -======= -<<<<<<< Updated upstream -2022-07-25 16:14:44.623 - error: [FS-ERRHD] -======= -2022-07-26 15:14:20.784 - error: [FS-ERRHD] ->>>>>>> Stashed changes +2022-08-30 09:20:49.067 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, -<<<<<<< Updated upstream - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', ->>>>>>> Stashed changes + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', -<<<<<<< Updated upstream - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', ->>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', -<<<<<<< Updated upstream - referer: 'http://localhost:5000/fillion/transportation', -======= - referer: 'http://localhost:5000/fillion/promotional', ->>>>>>> Stashed changes + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -20365,93 +22258,58 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< Updated upstream - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -<<<<<<< Updated upstream -2022-07-25 16:20:37.830 - error: [FS-ERRHD] -======= -2022-07-26 15:50:24.375 - debug: [FS-LOGGER] Init. -2022-07-26 16:01:57.214 - debug: [FS-LOGGER] Init. -2022-07-26 16:04:55.264 - error: [FS-ERRHD] ->>>>>>> Stashed changes +2022-08-30 09:20:49.070 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, -<<<<<<< Updated upstream - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'content-length': '1803', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/publicity?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', ->>>>>>> Stashed changes + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, -<<<<<<< Updated upstream - method: 'PUT', - body: '{"routeName":"袁渡-进贤文港草草草草","routeCode":"X943360121","sectionNo":"004","townshipCode":"360121200000","startingPlaceName":"桥口","startStation":"1.051","categoryOfStartingPointAndDividingPoint":"非界点","stopPlaceName":"桥","categoryOfDeadCenterAndDividingPoint":"非界点","stopStation":"1.849","sectionType":"双向","natureOfRoadSection":"正常路段","completionTime":"2019-11","natureOfConstruction":"新建","landforms":"微丘","natureOfCharges":"非收费","numberOfCulverts":"0","technicalLevel":"三级公路","pavementType":"沥青混凝土","pavementWidth":"6.5","subgradeWidth":"7.5","laneCharacteristics":"双车道","whetherItIsOpenToTrafficInSunnyOrRainyDays":"是","designSpeedPerHour":"30","urbanManagementSectionOrNot":"否","managementAndMaintenanceUnit":"11101360121南昌市南昌县交通局","roadAdministrationUnit":"南昌县交通运输局","alimentation":"列养","sourceOfListedMaintenanceFunds":"其他","curingTime":"经常性","greeningMileage":"0.798","greeningMileaged":"0.798","plannedFundCategory":"其它","plannedYear":"2019","planDocumentNo":"赣路县字(2019)14号","planItemUniqueCode":"2018360121005","plannedProjectRouteCode":"X943360121","planProjectName":"黄马-桐源","plannedProjectType":"县道升级改造","completionStatus":"未完工","yearOfCompletion":"2020","reportingUnit":"361011211南昌县交通局","reasonForChange":"无变更","changeTime":"2020-11","whetherMaintenanceManagedHighway":"否","remarks":"新增道路","routeCodeOfLastYear":"X943360121","routeNameOfLastYear":"袁渡-进贤文港","startingStationOfLastYear":"1.051","lastYearsEndingPointStakeNumber":"1.849","graphicMileage":"0.802","chainageMileage":"0.798","districtcounty":"南昌县","locationCity":"南昌市","level":"县","roadId":2799}', -======= method: 'GET', body: '[object Object]', ->>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -20459,105 +22317,58 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< Updated upstream - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -<<<<<<< Updated upstream -2022-07-25 17:13:48.396 - error: [FS-ERRHD] -<<<<<<< Updated upstream ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -======= -2022-07-26 16:06:51.862 - error: [FS-ERRHD] ->>>>>>> Stashed changes ->>>>>>> Stashed changes +2022-08-30 09:20:49.073 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, -<<<<<<< Updated upstream - url: 'https://3024-117-90-36-177.jp.ngrok.io/login', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'content-length': '55', -<<<<<<< HEAD - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', -======= - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', ->>>>>>> Stashed changes + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', -<<<<<<< HEAD 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 }, encoding: null, followRedirect: true, -<<<<<<< Updated upstream - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', -======= method: 'GET', body: '[object Object]', ->>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -20565,91 +22376,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< Updated upstream -<<<<<<< HEAD + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-25 19:33:14.728 - error: [FS-ERRHD] +2022-08-30 09:20:49.085 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 18.177.60.68:443', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: -4039, - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '18.177.60.68', - port: 443 -======= -======= -<<<<<<< Updated upstream ->>>>>>> Stashed changes - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-07-25 17:20:38.059 - debug: [FS-LOGGER] Init. -2022-07-25 17:20:38.539 - info: [Router] Inject api: attachment/index -2022-07-26 08:24:40.399 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', + address: '127.0.0.1', port: 14000 ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 }, error: { '$ref': '$["cause"]' }, options: { jar: false, -<<<<<<< HEAD - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -20664,45 +22435,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.60.68:443\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-25 19:44:17.724 - error: [FS-ERRHD] +2022-08-30 09:20:49.090 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -20717,44 +22494,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-25 21:31:50.491 - error: [FS-ERRHD] +2022-08-30 09:20:49.093 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -20769,44 +22553,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 09:31:23.413 - error: [FS-ERRHD] +2022-08-30 09:20:49.098 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -20821,44 +22612,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 09:45:24.340 - error: [FS-ERRHD] +2022-08-30 09:20:50.615 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -20873,44 +22671,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 14:03:06.926 - error: [FS-ERRHD] +2022-08-30 09:20:50.618 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -20925,44 +22730,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 14:13:08.793 - error: [FS-ERRHD] +2022-08-30 09:20:50.621 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -20977,44 +22789,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 14:22:55.765 - error: [FS-ERRHD] +2022-08-30 09:21:18.333 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -21029,44 +22848,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 14:28:54.441 - error: [FS-ERRHD] +2022-08-30 09:21:18.351 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -21081,44 +22907,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 14:31:44.233 - error: [FS-ERRHD] +2022-08-30 09:21:18.355 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -21133,46 +22966,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:05:17.376 - error: [FS-ERRHD] +2022-08-30 09:21:18.359 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21185,46 +23025,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:25:47.595 - error: [FS-ERRHD] +2022-08-30 09:21:18.363 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21237,46 +23084,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:26:54.234 - error: [FS-ERRHD] +2022-08-30 09:21:18.374 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21289,46 +23143,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:31:38.399 - error: [FS-ERRHD] +2022-08-30 09:21:18.380 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21341,46 +23202,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:32:47.830 - error: [FS-ERRHD] +2022-08-30 09:21:18.384 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21393,46 +23261,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:32:53.702 - error: [FS-ERRHD] +2022-08-30 09:21:18.390 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21445,46 +23320,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:33:31.989 - error: [FS-ERRHD] +2022-08-30 09:21:22.623 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21497,46 +23379,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:34:30.724 - error: [FS-ERRHD] +2022-08-30 09:21:22.630 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21549,47 +23438,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:37:40.347 - error: [FS-ERRHD] +2022-08-30 09:21:22.633 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21602,46 +23497,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:37:56.314 - error: [FS-ERRHD] +2022-08-30 09:22:35.474 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21654,46 +23556,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:39:01.155 - error: [FS-ERRHD] +2022-08-30 09:22:35.488 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21706,46 +23615,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:45:51.476 - error: [FS-ERRHD] +2022-08-30 09:22:35.499 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21758,46 +23674,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:46:42.295 - error: [FS-ERRHD] +2022-08-30 09:22:35.506 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21810,46 +23733,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:46:49.635 - error: [FS-ERRHD] +2022-08-30 09:22:35.511 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21862,46 +23792,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:49:05.976 - error: [FS-ERRHD] +2022-08-30 09:22:35.562 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21914,47 +23851,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:49:59.409 - error: [FS-ERRHD] +2022-08-30 09:22:35.566 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21967,46 +23910,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:50:02.336 - error: [FS-ERRHD] +2022-08-30 09:22:35.569 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22019,46 +23969,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:50:44.803 - error: [FS-ERRHD] +2022-08-30 09:22:35.574 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22071,46 +24028,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:50:55.510 - error: [FS-ERRHD] +2022-08-30 09:23:30.785 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22123,46 +24087,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:51:02.542 - error: [FS-ERRHD] +2022-08-30 09:23:30.807 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22175,46 +24146,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:51:38.453 - error: [FS-ERRHD] +2022-08-30 09:23:30.811 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22227,46 +24205,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:52:12.135 - error: [FS-ERRHD] +2022-08-30 09:23:30.814 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22279,46 +24264,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:52:30.917 - error: [FS-ERRHD] +2022-08-30 09:23:30.819 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22331,46 +24323,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:52:51.557 - error: [FS-ERRHD] +2022-08-30 09:23:30.831 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22383,46 +24382,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:55:53.353 - error: [FS-ERRHD] +2022-08-30 09:23:30.834 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22435,46 +24441,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:56:21.605 - error: [FS-ERRHD] +2022-08-30 09:23:30.839 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22487,46 +24500,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:57:51.983 - error: [FS-ERRHD] +2022-08-30 09:23:30.843 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22539,46 +24559,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:57:59.909 - error: [FS-ERRHD] +2022-08-30 09:23:32.898 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22591,46 +24618,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:58:07.737 - error: [FS-ERRHD] +2022-08-30 09:23:32.902 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22643,46 +24677,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:58:39.343 - error: [FS-ERRHD] +2022-08-30 09:23:32.908 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22695,46 +24736,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 15:59:44.352 - error: [FS-ERRHD] +2022-08-30 09:23:54.422 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22747,46 +24795,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:00:13.758 - error: [FS-ERRHD] +2022-08-30 09:23:54.439 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22799,46 +24854,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:00:29.556 - error: [FS-ERRHD] +2022-08-30 09:23:54.442 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, + error: { '$ref': '$["cause"]' }, + options: { + jar: false, + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', + headers: { + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22851,46 +24913,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:02:49.458 - error: [FS-ERRHD] +2022-08-30 09:23:54.445 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22903,46 +24972,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:03:11.150 - error: [FS-ERRHD] +2022-08-30 09:23:54.448 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22955,46 +25031,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:03:55.054 - error: [FS-ERRHD] +2022-08-30 09:23:54.456 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23007,46 +25090,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:06:27.365 - error: [FS-ERRHD] +2022-08-30 09:23:54.459 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23059,46 +25149,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:06:57.285 - error: [FS-ERRHD] +2022-08-30 09:23:54.462 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23111,46 +25208,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:10:37.727 - error: [FS-ERRHD] +2022-08-30 09:23:54.467 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23163,46 +25267,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:12:12.006 - error: [FS-ERRHD] +2022-08-30 09:24:52.495 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23215,46 +25326,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:13:19.972 - error: [FS-ERRHD] +2022-08-30 09:24:52.515 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23267,46 +25385,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:17:03.477 - error: [FS-ERRHD] +2022-08-30 09:24:52.524 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23319,46 +25444,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:17:23.022 - error: [FS-ERRHD] +2022-08-30 09:24:52.528 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23371,46 +25503,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:19:46.467 - error: [FS-ERRHD] +2022-08-30 09:24:52.534 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23423,46 +25562,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:21:04.386 - error: [FS-ERRHD] +2022-08-30 09:24:52.548 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23475,46 +25621,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:23:37.276 - error: [FS-ERRHD] +2022-08-30 09:24:52.553 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23527,47 +25680,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:24:34.917 - error: [FS-ERRHD] +2022-08-30 09:24:52.559 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23580,46 +25739,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:25:28.568 - error: [FS-ERRHD] +2022-08-30 09:24:52.563 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23632,46 +25798,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:25:53.881 - error: [FS-ERRHD] +2022-08-30 09:24:55.762 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23684,44 +25857,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:27:36.001 - error: [FS-ERRHD] +2022-08-30 09:24:55.767 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -23736,47 +25916,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:27:53.545 - error: [FS-ERRHD] +2022-08-30 09:24:55.770 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -23789,44 +25975,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:28:00.553 - error: [FS-ERRHD] +2022-08-30 09:27:47.373 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -23841,44 +26034,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:28:23.515 - error: [FS-ERRHD] +2022-08-30 09:27:47.387 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -23893,44 +26093,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:28:46.863 - error: [FS-ERRHD] +2022-08-30 09:27:47.390 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -23945,44 +26152,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:40:55.481 - error: [FS-ERRHD] +2022-08-30 09:27:47.393 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -23997,44 +26211,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:58:09.728 - error: [FS-ERRHD] +2022-08-30 09:27:47.396 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24049,44 +26270,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:58:50.269 - error: [FS-ERRHD] +2022-08-30 09:27:47.406 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24101,44 +26329,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:59:09.075 - error: [FS-ERRHD] +2022-08-30 09:27:47.411 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24153,44 +26388,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:59:38.062 - error: [FS-ERRHD] +2022-08-30 09:27:47.416 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24205,44 +26447,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:59:56.784 - error: [FS-ERRHD] +2022-08-30 09:27:47.419 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24257,44 +26506,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 16:59:58.544 - error: [FS-ERRHD] +2022-08-30 09:27:48.337 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24309,44 +26565,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:19.330 - error: [FS-ERRHD] +2022-08-30 09:27:48.342 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24361,44 +26624,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:20.986 - error: [FS-ERRHD] +2022-08-30 09:27:48.345 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24413,44 +26683,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:23.433 - error: [FS-ERRHD] +2022-08-30 09:28:33.586 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24465,44 +26742,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:39.942 - error: [FS-ERRHD] +2022-08-30 09:28:33.596 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24517,44 +26801,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:39.946 - error: [FS-ERRHD] +2022-08-30 09:28:33.600 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24569,44 +26860,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:41.684 - error: [FS-ERRHD] +2022-08-30 09:28:33.605 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24621,44 +26919,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:00:41.685 - error: [FS-ERRHD] +2022-08-30 09:28:33.610 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24673,44 +26978,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:01:00.953 - error: [FS-ERRHD] +2022-08-30 09:28:33.626 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24725,44 +27037,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:03:05.868 - error: [FS-ERRHD] +2022-08-30 09:28:33.633 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24777,44 +27096,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:05:04.867 - error: [FS-ERRHD] +2022-08-30 09:28:33.640 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24829,44 +27155,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:05:26.206 - error: [FS-ERRHD] +2022-08-30 09:28:33.646 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/manage/overspeed?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24881,44 +27214,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:05:36.978 - error: [FS-ERRHD] +2022-08-30 09:28:34.972 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24933,44 +27273,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:06:00.888 - error: [FS-ERRHD] +2022-08-30 09:28:34.977 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/road_manage?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -24985,44 +27332,51 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:06:10.106 - error: [FS-ERRHD] +2022-08-30 09:28:34.982 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=1518497f-8a7a-42de-b2b4-cbb901c7b7e2', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.70', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '1518497f-8a7a-42de-b2b4-cbb901c7b7e2', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, @@ -25037,46 +27391,54 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:06:15.381 - error: [FS-ERRHD] +2022-08-30 09:35:48.220 - debug: [FS-LOGGER] Init. +2022-08-30 09:35:48.526 - info: [Router] Inject api: attachment/index +2022-08-30 09:40:36.263 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/department', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + expires: '-1', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', - expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -25089,51 +27451,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:06:16.545 - error: [FS-ERRHD] +2022-08-30 09:40:37.815 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -25141,51 +27512,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:06:39.726 - error: [FS-ERRHD] +2022-08-30 09:40:40.188 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -25193,51 +27573,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:06:48.057 - error: [FS-ERRHD] +2022-08-30 09:41:44.345 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -25245,51 +27634,62 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:07:26.215 - error: [FS-ERRHD] +2022-08-30 09:41:57.235 - debug: [FS-LOGGER] Init. +2022-08-30 09:41:57.302 - info: [Router] Inject api: attachment/index +2022-08-30 09:42:28.749 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 10.8.30.157:9118', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.8.30.157', + port: 9118 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9118/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9118', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -25297,51 +27697,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 10.8.30.157:9118\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:08:00.257 - error: [FS-ERRHD] +2022-08-30 09:42:35.738 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 10.8.30.157:9118', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.8.30.157', + port: 9118 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9118/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9118', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -25349,46 +27758,52 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 10.8.30.157:9118\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:09:26.353 - error: [FS-ERRHD] +2022-08-30 09:43:16.698 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 10.8.30.157:9118', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.8.30.157', + port: 9118 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9118/department', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9118', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + expires: '-1', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', - expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -25401,52 +27816,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 10.8.30.157:9118\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:09:52.959 - error: [FS-ERRHD] +2022-08-30 09:43:18.105 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 10.8.30.157:9118', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '10.8.30.157', + port: 9118 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9118/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9118', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -25454,46 +27877,94 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 10.8.30.157:9118\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:10:11.506 - error: [FS-ERRHD] +<<<<<<< Updated upstream +2022-08-11 15:44:34.374 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 15:45:37.206 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 15:46:39.734 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 15:47:57.918 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 15:48:19.047 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/transportation/statistic?token=9b53ac48-3cfd-451c-b684-2a9162d4f064', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '9b53ac48-3cfd-451c-b684-2a9162d4f064', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -25506,46 +27977,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:10:25.777 - error: [FS-ERRHD] +2022-08-11 15:48:19.049 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://10.8.30.157:9119/build/road_state?token=9b53ac48-3cfd-451c-b684-2a9162d4f064', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: '10.8.30.157:9119', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '9b53ac48-3cfd-451c-b684-2a9162d4f064', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -25558,46 +28036,185 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:13:41.089 - error: [FS-ERRHD] +2022-08-11 16:11:35.901 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 17:02:37.841 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 17:10:22.109 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 17:14:24.331 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 17:15:28.893 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 17:17:56.664 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 17:18:28.852 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 17:18:49.839 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 17:20:06.230 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 17:22:54.324 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-11 17:23:51.544 - error: [FS-ERRHD] +{ + message: 'qndmn is not defined', + stack: 'ReferenceError: qndmn is not defined\n' + + ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + + ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' +} +2022-08-12 09:20:48.242 - debug: [FS-LOGGER] Init. +2022-08-12 09:20:48.461 - info: [Router] Inject api: attachment/index +2022-08-12 09:23:10.771 - debug: [FS-LOGGER] Init. +2022-08-12 09:23:10.830 - info: [Router] Inject api: attachment/index +======= +>>>>>>> 19b9beb06f6736a29ddc681ae749b4770d47bbb5 +2022-08-12 09:32:03.548 - debug: [FS-LOGGER] Init. +2022-08-12 09:32:03.611 - info: [Router] Inject api: attachment/index +======= +2022-08-12 09:48:32.452 - debug: [FS-LOGGER] Init. +2022-08-12 09:48:32.517 - info: [Router] Inject api: attachment/index +2022-08-12 10:13:00.182 - debug: [FS-LOGGER] Init. +2022-08-12 10:13:00.237 - info: [Router] Inject api: attachment/index +2022-08-12 10:36:42.015 - debug: [FS-LOGGER] Init. +2022-08-12 10:36:42.064 - info: [Router] Inject api: attachment/index +>>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 +2022-08-12 15:25:11.099 - debug: [FS-LOGGER] Init. +2022-08-12 15:25:11.168 - info: [Router] Inject api: attachment/index +<<<<<<< Updated upstream +2022-08-12 15:36:12.317 - debug: [FS-LOGGER] Init. +2022-08-12 15:36:12.386 - info: [Router] Inject api: attachment/index +2022-08-25 11:29:58.392 - debug: [FS-LOGGER] Init. +2022-08-25 11:29:58.748 - info: [Router] Inject api: attachment/index +2022-08-25 11:30:29.850 - error: [FS-ERRHD] +{ + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: -4078, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/department', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + expires: '-1', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', - expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -25610,51 +28227,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (node:events:527:28)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' + ' at ClientRequest.emit (node:events:527:28)\n' + + ' at Socket.socketErrorListener (node:_http_client:454:9)\n' + + ' at Socket.emit (node:events:527:28)\n' + + ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + + ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + + ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' } -2022-07-26 17:14:18.023 - error: [FS-ERRHD] +2022-08-25 11:31:56.051 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: -4078, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -25662,51 +28288,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (node:events:527:28)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' + ' at ClientRequest.emit (node:events:527:28)\n' + + ' at Socket.socketErrorListener (node:_http_client:454:9)\n' + + ' at Socket.emit (node:events:527:28)\n' + + ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + + ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + + ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' } -2022-07-26 17:14:46.577 - error: [FS-ERRHD] +2022-08-25 11:32:01.430 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: -4078, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -25714,46 +28349,52 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (node:events:527:28)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' + ' at ClientRequest.emit (node:events:527:28)\n' + + ' at Socket.socketErrorListener (node:_http_client:454:9)\n' + + ' at Socket.emit (node:events:527:28)\n' + + ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + + ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + + ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' } -2022-07-26 17:14:59.928 - error: [FS-ERRHD] +2022-08-25 11:32:13.818 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: -4078, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/department', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + expires: '-1', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', - expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -25766,51 +28407,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (node:events:527:28)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' + ' at ClientRequest.emit (node:events:527:28)\n' + + ' at Socket.socketErrorListener (node:_http_client:454:9)\n' + + ' at Socket.emit (node:events:527:28)\n' + + ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + + ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + + ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' } -2022-07-26 17:15:57.071 - error: [FS-ERRHD] +2022-08-25 11:32:15.439 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: -4078, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -25818,51 +28468,62 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (node:events:527:28)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' + ' at ClientRequest.emit (node:events:527:28)\n' + + ' at Socket.socketErrorListener (node:_http_client:454:9)\n' + + ' at Socket.emit (node:events:527:28)\n' + + ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + + ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + + ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' } -2022-07-26 17:15:59.349 - error: [FS-ERRHD] +2022-08-25 11:33:18.405 - debug: [FS-LOGGER] Init. +2022-08-25 11:33:18.469 - info: [Router] Inject api: attachment/index +2022-08-25 11:33:26.136 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { + errno: -4078, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -25870,52 +28531,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (node:events:527:28)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' + ' at ClientRequest.emit (node:events:527:28)\n' + + ' at Socket.socketErrorListener (node:_http_client:454:9)\n' + + ' at Socket.emit (node:events:527:28)\n' + + ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + + ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + + ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' } -2022-07-26 17:17:19.019 - error: [FS-ERRHD] +2022-08-25 11:33:29.995 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: -4078, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -25923,51 +28592,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (node:events:527:28)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' + ' at ClientRequest.emit (node:events:527:28)\n' + + ' at Socket.socketErrorListener (node:_http_client:454:9)\n' + + ' at Socket.emit (node:events:527:28)\n' + + ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + + ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + + ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' } -2022-07-26 17:17:25.934 - error: [FS-ERRHD] +2022-08-25 11:33:47.119 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: -4078, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -25975,51 +28653,60 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (node:events:527:28)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' + ' at ClientRequest.emit (node:events:527:28)\n' + + ' at Socket.socketErrorListener (node:_http_client:454:9)\n' + + ' at Socket.emit (node:events:527:28)\n' + + ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + + ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + + ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' } -2022-07-26 17:17:30.086 - error: [FS-ERRHD] +2022-08-25 11:38:17.819 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: -4078, + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/login', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'content-length': '55', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', + origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -26027,46 +28714,80 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + + ' at Request.emit (node:events:527:28)\n' + ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' + ' at ClientRequest.emit (node:events:527:28)\n' + + ' at Socket.socketErrorListener (node:_http_client:454:9)\n' + + ' at Socket.emit (node:events:527:28)\n' + + ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + + ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + + ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' } -2022-07-26 17:18:01.836 - error: [FS-ERRHD] +2022-08-25 11:38:38.733 - debug: [FS-LOGGER] Init. +2022-08-25 11:38:38.811 - info: [Router] Inject api: attachment/index +======= +<<<<<<< Updated upstream +2022-08-30 09:43:54.957 - debug: [FS-LOGGER] Init. +2022-08-30 09:43:55.018 - info: [Router] Inject api: attachment/index +>>>>>>> Stashed changes +<<<<<<< Updated upstream +2022-08-31 10:47:49.318 - debug: [FS-LOGGER] Init. +2022-08-31 10:47:49.638 - info: [Router] Inject api: attachment/index +2022-08-31 10:52:02.087 - debug: [FS-LOGGER] Init. +2022-08-31 10:52:02.148 - info: [Router] Inject api: attachment/index +======= +>>>>>>> Stashed changes +======= +2022-08-25 14:22:06.306 - debug: [FS-LOGGER] Init. +2022-08-25 14:22:07.091 - info: [Router] Inject api: attachment/index +>>>>>>> Stashed changes +2022-08-25 14:47:37.150 - debug: [FS-LOGGER] Init. +2022-08-25 14:47:37.208 - info: [Router] Inject api: attachment/index +2022-08-31 20:42:30.982 - debug: [FS-LOGGER] Init. +2022-08-31 20:42:31.495 - info: [Router] Inject api: attachment/index +2022-08-31 21:11:47.894 - debug: [FS-LOGGER] Init. +2022-08-31 21:11:47.944 - info: [Router] Inject api: attachment/index +>>>>>>> Stashed changes +2022-09-01 01:08:38.453 - debug: [FS-LOGGER] Init. +2022-09-01 01:08:38.617 - info: [Router] Inject api: attachment/index +2022-09-01 01:09:41.373 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/data/god_trans?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26079,46 +28800,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:18:07.556 - error: [FS-ERRHD] +2022-09-01 01:09:41.404 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/data/god_trans?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26131,46 +28859,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:18:41.436 - error: [FS-ERRHD] +2022-09-01 01:09:41.407 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26183,46 +28918,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:18:54.267 - error: [FS-ERRHD] +2022-09-01 01:09:41.420 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26235,46 +28977,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:19:09.210 - error: [FS-ERRHD] +2022-09-01 01:09:41.429 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/build/road_state?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26287,46 +29036,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:22:58.898 - error: [FS-ERRHD] +2022-09-01 01:09:41.433 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26339,46 +29095,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:23:14.668 - error: [FS-ERRHD] +2022-09-01 01:09:41.437 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26391,46 +29154,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:25:18.074 - error: [FS-ERRHD] +2022-09-01 01:09:41.447 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26443,46 +29213,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:28:20.415 - error: [FS-ERRHD] +2022-09-01 01:09:41.452 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/transportation/statistic?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26495,46 +29272,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:36:52.345 - error: [FS-ERRHD] +2022-09-01 01:09:41.456 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/manage/overspeed?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26547,46 +29331,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:45:59.315 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' +} +2022-09-01 01:09:41.459 - error: [FS-ERRHD] +{ + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', + name: 'RequestError', + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, + error: { '$ref': '$["cause"]' }, + options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/manage/overspeed?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26599,46 +29390,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 17:49:54.833 - error: [FS-ERRHD] +2022-09-01 01:09:45.971 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/road/maintenance?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26651,46 +29449,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:04:39.532 - error: [FS-ERRHD] +2022-09-01 01:09:46.004 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road/maintenance?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26703,46 +29508,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:04:40.707 - error: [FS-ERRHD] +2022-09-01 01:09:46.010 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/build/road_state?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26755,46 +29567,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:04:40.709 - error: [FS-ERRHD] +2022-09-01 01:09:46.018 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/road_manage?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26807,46 +29626,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:22:09.664 - error: [FS-ERRHD] +2022-09-01 01:09:46.022 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/conserve/statistic?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26859,46 +29685,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:28:27.382 - error: [FS-ERRHD] +2022-09-01 01:09:46.033 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road/maintenance/cost/query?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -26911,20 +29744,21 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:28:27.388 - error: [FS-ERRHD] +2022-09-01 16:38:47.967 - error: [FS-ERRHD] { message: 'Error: socket hang up', name: 'RequestError', @@ -26932,30 +29766,21 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road/maintenance?token=00b84f42-f69d-47b4-8b36-2677ddd420e1&serialNumber=2&responsibleUnitForManagementAndMaintenance=%E5%8D%97%E6%96%B0%E4%B9%A1%E4%BA%BA%E6%B0%91%E6%94%BF%E5%BA%9C&maintenanceUnit=%E9%91%AB%E6%B4%B2%E6%8E%A7%E8%82%A1%E9%9B%86%E5%9B%A2%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', + 'content-type': 'application/json', + 'user-agent': 'PostmanRuntime/7.29.2', accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + 'postman-token': '74e32c2e-54e7-47eb-9df1-fd5f87acfcae', + host: 'localhost:14000', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + connection: 'keep-alive', + 'content-length': '234' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"problem":"magna Excepteur deserunt","time":"1990-06-11 14:29:53","name":"他与林长边","phone":"13527735564","describe":"ea reprehenderit magna id nisi","enterprise":"Duis id ex nulla"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -26964,19 +29789,19 @@ }, response: undefined, stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketOnEnd (_http_client.js:458:9)\n' + + ' at Socket.emit (events.js:326:22)\n' + + ' at endReadableNT (_stream_readable.js:1241:12)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:28:27.389 - error: [FS-ERRHD] +2022-09-01 16:41:01.853 - error: [FS-ERRHD] { message: 'Error: socket hang up', name: 'RequestError', @@ -26984,30 +29809,21 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/road/maintenance?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', + 'content-type': 'application/json', + 'user-agent': 'PostmanRuntime/7.29.2', accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + 'postman-token': '5acd2330-6d0e-42a5-8e67-a883bb2c12e5', + host: 'localhost:14000', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + connection: 'keep-alive', + 'content-length': '175' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"serialNumber":"2","responsibleUnitForManagementAndMaintenance":"南新乡人民政府","maintenanceUnit":"鑫洲控股集团股份有限公司"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -27016,45 +29832,51 @@ }, response: undefined, stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketOnEnd (_http_client.js:458:9)\n' + + ' at Socket.emit (events.js:326:22)\n' + + ' at endReadableNT (_stream_readable.js:1241:12)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:28:27.393 - error: [FS-ERRHD] +2022-09-01 17:03:22.696 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/road/maintenance?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/highways', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -27067,46 +29889,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:30:02.537 - error: [FS-ERRHD] +2022-09-01 17:03:25.149 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/department?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/highways', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -27119,46 +29948,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:30:17.508 - error: [FS-ERRHD] +2022-09-01 17:03:25.305 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/highways', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -27171,46 +30007,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:31:24.966 - error: [FS-ERRHD] +2022-09-01 17:03:28.906 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/department?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/highways', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -27223,46 +30066,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:38:09.356 - error: [FS-ERRHD] +2022-09-01 17:03:29.035 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/road_manage?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/highways', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -27275,46 +30125,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:40:43.928 - error: [FS-ERRHD] +2022-09-01 17:03:34.223 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + url: 'http://localhost:14000/department?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/highways', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -27327,43881 +30184,53 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at ClientRequest.emit (events.js:314:20)\n' + + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + + ' at Socket.emit (events.js:314:20)\n' + + ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + + ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-07-26 18:40:43.962 - error: [FS-ERRHD] +2022-09-01 17:03:34.354 - error: [FS-ERRHD] { - message: 'Error: socket hang up', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', - cause: { code: 'ECONNRESET' }, + cause: { + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', + syscall: 'connect', + address: '127.0.0.1', + port: 14000 + }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', + url: 'http://localhost:14000/road_manage?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '3024-117-90-36-177.jp.ngrok.io', + host: 'localhost:14000', connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/highways', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:40:43.964 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:44:00.820 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:44:01.004 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:45:32.505 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:45:32.510 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:46:12.458 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:46:12.467 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:46:12.470 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:58:58.706 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:04:12.892 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:04:23.109 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:04:23.112 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:05:25.304 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:05:38.379 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:10:03.259 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:14:35.006 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:17:34.476 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:21:01.435 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:28:11.552 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.090 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.094 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.095 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.096 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.097 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.102 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.103 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.105 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:30:14.980 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:30:14.984 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:32:33.799 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:35:26.957 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:38:37.150 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:42:43.011 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:42.076 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:43.835 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:43.837 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:43.928 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:43.930 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:45:20.980 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:45:21.134 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:46:00.276 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:56:04.523 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:56:14.460 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:57:23.977 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:21.654 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:22.025 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:25.060 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:32.062 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:32.631 - error: [FS-ERRHD] -{ - message: 'Error: Client network socket disconnected before secure TLS connection was established', - name: 'RequestError', - cause: { - code: 'ECONNRESET', - path: null, - host: '3024-117-90-36-177.jp.ngrok.io', - port: 443, - localAddress: undefined - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: Client network socket disconnected before secure TLS connection was established\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:34.124 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:39.189 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:40.516 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.0.235', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:43.081 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.0.235', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:53.110 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.0.235', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:57.096 - error: [FS-ERRHD] -{ - message: 'Error: Client network socket disconnected before secure TLS connection was established', - name: 'RequestError', - cause: { - code: 'ECONNRESET', - path: null, - host: '3024-117-90-36-177.jp.ngrok.io', - port: 443, - localAddress: undefined - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: Client network socket disconnected before secure TLS connection was established\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:59.070 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:59.675 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:00.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.53.48:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.53.48', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.53.48:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:18.733 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.53.48:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.53.48', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.53.48:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:18.735 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.53.48:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.53.48', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.53.48:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:24.071 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:24.830 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:26.949 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:32.149 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:08:54.658 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:13:54.930 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:15:40.794 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:17:26.854 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:23:21.899 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:26:55.570 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:43.543 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:44.700 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:44.704 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:44.707 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:31:33.345 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:32:12.538 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:33:07.854 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:34:11.067 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:34:12.705 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:34:12.706 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:35:20.149 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:35:35.882 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:36:12.902 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:37:54.674 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:39:51.831 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:41:18.189 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:41:55.589 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:43:58.004 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:44:09.699 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:44:25.521 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:44:59.643 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:46:12.533 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:46:12.537 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:46:15.642 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:46:51.662 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:47:34.958 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:48:57.031 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:48:59.933 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:49:29.672 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:49:29.687 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:52:41.535 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:56:42.627 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:57:44.721 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:02:33.291 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:07:13.391 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:07:15.767 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:07:15.769 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:08:04.134 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:14:19.167 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:16:32.432 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:32:21.786 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:32:41.558 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:33:36.605 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:42:10.394 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:45:22.643 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:46:23.136 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:48:34.964 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:50:02.409 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:50:51.822 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:50:53.115 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:53:27.667 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:55:28.463 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:55:37.153 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:57:25.485 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:57:36.148 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:00:43.357 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:00:50.962 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:02:19.314 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:02:53.027 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:03:15.054 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:03:23.393 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:03:27.269 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:27.760 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:29.375 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:35.922 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:40.266 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:49.383 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:08:06.879 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:10:26.322 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:10:51.475 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:11:40.375 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:11:57.822 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:13:02.792 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:15:37.545 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:15:53.416 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:16:00.837 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:16:44.550 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:17.435 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:24.642 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.176.183.3:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.176.183.3', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.176.183.3:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:37.245 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:38.483 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.176.183.3:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.176.183.3', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.176.183.3:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:45.708 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.0.235', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:54.873 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:20:05.128 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:20:17.088 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 08:52:53.296 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 08:55:02.416 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 09:02:58.014 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 09:16:10.592 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 09:22:21.685 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 10:17:42.286 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 10:43:25.730 - debug: [FS-LOGGER] Init. -2022-07-27 10:58:49.630 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=8b9717fe-80d5-48a4-a364-d78045b3d249', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '8b9717fe-80d5-48a4-a364-d78045b3d249', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketOnEnd (_http_client.js:485:9)\n' + - ' at Socket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 10:58:49.634 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=8b9717fe-80d5-48a4-a364-d78045b3d249', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '8b9717fe-80d5-48a4-a364-d78045b3d249', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:24:50.233 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketOnEnd (_http_client.js:485:9)\n' + - ' at Socket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 11:03:27.808 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:24:50.640 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 11:03:27.813 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:31:48.455 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:31:48.847 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:03.454 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:05.740 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle/specific?token=3de82f98-253d-4ebd-a444-eff69920459b&%E5%87%BA%E7%A7%9F%E8%BD%A6', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:06.536 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle/specific?token=3de82f98-253d-4ebd-a444-eff69920459b&%E5%8D%B1%E8%B4%A7', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} ->>>>>>> Stashed changes -2022-07-26 08:33:07.314 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle/business?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:11.486 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:11.816 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:57.281 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:34:32.742 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:34:33.166 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} ->>>>>>> Stashed changes -<<<<<<< Updated upstream ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -<<<<<<< Updated upstream -======= -<<<<<<< HEAD -======= ->>>>>>> Stashed changes -======= ->>>>>>> Stashed changes -2022-07-26 10:36:17.862 - debug: [FS-LOGGER] Init. -2022-07-26 14:17:07.892 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:08.280 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:10.564 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle/specific?token=3de82f98-253d-4ebd-a444-eff69920459b&%E5%87%BA%E7%A7%9F%E8%BD%A6', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:12.386 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/bridge?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/bridge', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:33.973 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/bridge', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:34.427 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/bridge?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/bridge', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:37.083 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:19:12.817 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:19:13.254 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:47:41.611 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:47:41.616 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'content-length': '83', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'PUT', - body: '{"routeName":"1","routeCode":"1111","sectionNo":"4444","level":"县","roadId":3275}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 11:00:11.991 - debug: [FS-LOGGER] Init. -<<<<<<< Updated upstream -======= ->>>>>>> 8c961ddab5af3f0c4990e9be53f5da76d10fc848 ->>>>>>> Stashed changes ->>>>>>> Stashed changes -<<<<<<< Updated upstream -2022-07-27 17:24:17.967 - debug: [FS-LOGGER] Init. -2022-07-27 22:47:22.449 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:22.453 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:22.455 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:22.456 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:22.458 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:43.524 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:43.525 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:43.526 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:43.527 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.890 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.905 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.906 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.908 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.910 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.911 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:33:19.939 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:33:19.956 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:33:32.652 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:33:44.815 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/login', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:35:54.958 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/login', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.933 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.950 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.951 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.952 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.953 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.954 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:38:11.981 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:38:11.997 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:38:33.040 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:38:33.041 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.072 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.075 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.077 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.078 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.079 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.084 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:41.125 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:41.127 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:44:02.188 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:44:02.189 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.544 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.548 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.550 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.551 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.556 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.558 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:35.592 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:35.595 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.227 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.228 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.230 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.231 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 09:34:57.419 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 09:34:57.422 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -======= -2022-07-27 18:08:42.681 - debug: [FS-LOGGER] Init. ->>>>>>> Stashed changes -2022-07-28 10:07:47.322 - debug: [FS-LOGGER] Init. -2022-07-28 10:07:47.633 - info: [Router] Inject api: attachment/index -2022-07-28 10:09:37.852 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=a65552ac-21ca-41a7-9e40-e13e91095bdf', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a65552ac-21ca-41a7-9e40-e13e91095bdf', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:09:37.859 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=a65552ac-21ca-41a7-9e40-e13e91095bdf', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a65552ac-21ca-41a7-9e40-e13e91095bdf', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:13:45.214 - debug: [FS-LOGGER] Init. -2022-07-28 11:13:46.128 - info: [Router] Inject api: attachment/index -2022-07-28 11:43:04.846 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:04.854 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/publicity?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:46.528 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/publicity?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:46.536 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:46.540 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/publicity?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:46.544 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:46.548 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:46.552 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/publicity?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'content-length': '133', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'PUT', - body: '{"name":"1","video":["project/0a0ec3f8-0c9a-4a06-9210-d7fd0edad409/220223_104306-多端开发介绍和课程导读接口文档.zip"]}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:46.556 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/publicity?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:58.754 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/publicity?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'content-length': '31', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/promotional', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'PUT', - body: '{"name":"1231","video":["11."]}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-07-28 10:08:50.687 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:08:50.691 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:09:35.473 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:09:35.475 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:09:35.476 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:10:48.698 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:10:48.699 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:10:48.700 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:11:07.267 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:11:07.269 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:11:07.270 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:36:40.596 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:36:40.600 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:36:40.602 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:36:40.603 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.574 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.579 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.580 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.582 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.584 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.585 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.234 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.240 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.242 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.244 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.246 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.248 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.817 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.822 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.823 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.825 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.826 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.828 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.606 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.611 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.613 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.614 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.616 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.145 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.151 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.153 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.154 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.158 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.160 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:26:55.855 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:26:55.859 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:26:55.861 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.092 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.096 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.098 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.099 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.101 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.516 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.518 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.520 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.523 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.525 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.526 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.445 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.450 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.451 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.453 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.455 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.569 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.574 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.576 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.578 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.580 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.529 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.534 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.536 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.539 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.542 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.545 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.192 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.196 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.198 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.199 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.201 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.202 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:49:12.192 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:49:12.196 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:49:12.199 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:49:12.201 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:50:45.276 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:50:45.278 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:50:45.279 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:43.844 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:43.846 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:43.848 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:52:14.520 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:52:14.522 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:52:14.523 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:13:13.418 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:13:13.422 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:13:13.424 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:19:57.528 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:19:57.532 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:19:57.534 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:24:25.429 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:24:25.431 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:24:25.433 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:25:22.552 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:25:22.554 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:32:05.461 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:32:05.464 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:32:05.465 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:32:05.467 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.768 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.772 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.775 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.777 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.778 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:39:08.095 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:39:08.101 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:39:08.103 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.368 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/data/god_trans?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.372 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/data/god_trans?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.375 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.377 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.378 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.380 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 16:51:10.270 - debug: [FS-LOGGER] Init. -2022-07-28 16:51:11.180 - info: [Router] Inject api: attachment/index -======= -2022-07-28 15:08:36.754 - debug: [FS-LOGGER] Init. -2022-07-28 15:08:37.225 - info: [Router] Inject api: attachment/index ->>>>>>> Stashed changes -======= -2022-07-28 22:42:53.030 - debug: [FS-LOGGER] Init. -2022-07-28 22:42:53.107 - info: [Router] Inject api: attachment/index -2022-07-28 22:49:11.218 - debug: [FS-LOGGER] Init. -2022-07-28 22:49:11.297 - info: [Router] Inject api: attachment/index -2022-07-28 22:54:17.432 - debug: [FS-LOGGER] Init. -2022-07-28 22:54:17.511 - info: [Router] Inject api: attachment/index -2022-07-28 22:55:15.428 - debug: [FS-LOGGER] Init. -2022-07-28 22:55:15.513 - info: [Router] Inject api: attachment/index -<<<<<<< Updated upstream ->>>>>>> cc0881aafd062644a4dd75ebc176c5890198fb30 -2022-07-29 09:02:42.853 - debug: [FS-LOGGER] Init. -2022-07-29 09:02:44.142 - info: [Router] Inject api: attachment/index -2022-07-29 09:06:15.725 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (E:\\code_git\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (E:\\code_git\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at E:\\code_git\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at E:\\code_git\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (E:\\code_git\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-07-29 09:06:17.126 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:4000', -======= -2022-08-11 08:46:17.498 - debug: [FS-LOGGER] Init. -2022-08-11 08:46:17.571 - info: [Router] Inject api: attachment/index -2022-08-11 09:01:34.295 - debug: [FS-LOGGER] Init. -2022-08-11 09:01:34.363 - info: [Router] Inject api: attachment/index -2022-08-11 09:14:10.971 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', ->>>>>>> Stashed changes - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', -<<<<<<< Updated upstream - port: 4000 -======= - port: 14000 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:4000/login', - headers: { - host: 'localhost:4000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', -======= - url: 'http://localhost:14000/department', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/', ->>>>>>> Stashed changes - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, -<<<<<<< Updated upstream - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', -======= - method: 'GET', - body: '[object Object]', ->>>>>>> Stashed changes - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:4000\n' + -======= - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ->>>>>>> Stashed changes - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-07-29 09:06:19.281 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:4000', -======= -2022-08-11 09:14:12.760 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', ->>>>>>> Stashed changes - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', -<<<<<<< Updated upstream - port: 4000 -======= - port: 14000 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:4000/login', - headers: { - host: 'localhost:4000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', -======= - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', ->>>>>>> Stashed changes - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:4000\n' + -======= - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ->>>>>>> Stashed changes - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-07-29 09:06:21.906 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:4000', -======= -2022-08-11 09:14:16.465 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', ->>>>>>> Stashed changes - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', -<<<<<<< Updated upstream - port: 4000 -======= - port: 14000 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:4000/login', - headers: { - host: 'localhost:4000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', -======= - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', ->>>>>>> Stashed changes - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:4000\n' + -======= - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ->>>>>>> Stashed changes - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-07-29 09:12:14.920 - debug: [FS-LOGGER] Init. -2022-07-29 09:12:14.974 - info: [Router] Inject api: attachment/index -2022-07-29 09:12:40.846 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (E:\\code_git\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (E:\\code_git\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at E:\\code_git\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at E:\\code_git\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (E:\\code_git\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-07-29 09:12:41.914 - error: [FS-ERRHD] -======= -2022-08-11 09:14:29.135 - error: [FS-ERRHD] ->>>>>>> Stashed changes -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', -<<<<<<< Updated upstream - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', -======= - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', ->>>>>>> Stashed changes - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:13:40.289 - debug: [FS-LOGGER] Init. -2022-08-10 16:13:40.349 - info: [Router] Inject api: attachment/index -2022-08-10 16:14:33.197 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 16:14:33.258 - error: [FS-ERRHD] -======= -2022-08-11 09:15:16.144 - error: [FS-ERRHD] ->>>>>>> Stashed changes -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/department', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', -======= - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', ->>>>>>> Stashed changes - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + -<<<<<<< Updated upstream - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:14:45.676 - error: [FS-ERRHD] -======= -2022-08-11 09:17:45.654 - error: [FS-ERRHD] ->>>>>>> Stashed changes -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', -<<<<<<< Updated upstream - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', -======= - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', ->>>>>>> Stashed changes - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + -<<<<<<< Updated upstream - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:14:49.479 - error: [FS-ERRHD] -======= -2022-08-11 09:20:03.273 - error: [FS-ERRHD] ->>>>>>> Stashed changes -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', -<<<<<<< Updated upstream - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', -======= - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', ->>>>>>> Stashed changes - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + -<<<<<<< Updated upstream - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:18:57.167 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 16:18:58.368 - error: [FS-ERRHD] -======= -2022-08-11 09:22:42.258 - error: [FS-ERRHD] ->>>>>>> Stashed changes -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', -<<<<<<< Updated upstream - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', -======= - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', ->>>>>>> Stashed changes - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + -<<<<<<< Updated upstream - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:20:43.361 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', -======= -2022-08-11 09:22:48.358 - debug: [FS-LOGGER] Init. -2022-08-11 09:22:48.420 - info: [Router] Inject api: attachment/index -2022-08-11 09:23:50.759 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.89:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.89', ->>>>>>> Stashed changes - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', -======= - url: 'http://10.8.30.89:14000/login', - headers: { - host: '10.8.30.89:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', ->>>>>>> Stashed changes - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.89:14000\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:20:57.696 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', -======= -2022-08-11 09:25:07.685 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.89:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.89', ->>>>>>> Stashed changes - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', -======= - url: 'http://10.8.30.89:14000/login', - headers: { - host: '10.8.30.89:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', ->>>>>>> Stashed changes - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.89:14000\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:21:00.442 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 09:30:09.572 - debug: [FS-LOGGER] Init. -2022-08-11 09:30:09.626 - info: [Router] Inject api: attachment/index -2022-08-11 09:44:37.703 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', -======= - url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', ->>>>>>> Stashed changes - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:25:13.144 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 09:44:37.709 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', ->>>>>>> Stashed changes - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:28:04.674 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 09:44:37.779 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', -======= - url: 'http://10.8.30.157:9119/transportation/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', ->>>>>>> Stashed changes - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:28:13.072 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 09:52:00.046 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', -======= - url: 'http://10.8.30.157:9119/publicity?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', ->>>>>>> Stashed changes - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:29:56.345 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:13:18.729 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', -======= - url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', ->>>>>>> Stashed changes - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:30:54.960 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:13:18.743 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', -======= - url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', ->>>>>>> Stashed changes - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:39:29.540 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 16:39:31.050 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:13:19.276 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', -======= - url: 'http://10.8.30.157:9119/transportation/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', ->>>>>>> Stashed changes - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:44:16.759 - debug: [FS-LOGGER] Init. -2022-08-10 16:44:16.920 - info: [Router] Inject api: attachment/index -2022-08-10 16:45:30.304 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 16:45:30.380 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:13:24.472 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/department', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/transportation/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< Updated upstream - referer: 'http://localhost:5000/', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:45:33.431 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:15:10.488 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', -======= - url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', ->>>>>>> Stashed changes - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:46:04.085 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 16:46:04.163 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:15:10.502 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:46:04.193 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:15:10.507 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:46:04.196 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:15:10.513 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/conserve/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:46:04.206 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:21:35.595 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/publicity?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:46:04.209 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:25:38.627 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/manage/overspeed/processed?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:46:04.214 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:49:34.723 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:46:04.217 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:49:34.729 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/publicity?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:46:04.225 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:50:07.625 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:46:04.227 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:50:07.640 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:46:04.230 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 10:50:07.644 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/manage/overspeed', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/conserve/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:51:05.210 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 11:25:30.760 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/manage/overspeed?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 16:56:05.175 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 11:36:30.696 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/conserve/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:01:04.196 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 13:58:51.651 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:08.178 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 17:02:08.259 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 13:58:51.656 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:08.282 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 13:58:51.728 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/transportation/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:08.284 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 14:06:02.604 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:08.296 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 14:14:43.689 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:08.298 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 14:14:43.695 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:08.300 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 14:14:43.703 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:08.303 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 14:14:43.719 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/conserve/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:08.308 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 14:14:59.636 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:08.310 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 14:15:09.560 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/transportation/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:08.313 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 14:22:48.684 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/manage/overspeed', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/publicity?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:14.825 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 14:25:31.702 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/manage/overspeed?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:14.829 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 14:25:31.715 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/manage/overspeed?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:15.496 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 15:05:09.576 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/manage/overspeed?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-10 17:02:15.498 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 15:16:36.763 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/transportation/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:15.974 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:15.976 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:16.414 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:16.417 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:16.958 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:16.961 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:17.463 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:17.465 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:25.451 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 17:02:25.524 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:25.547 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:25.550 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:25.563 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:25.565 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:25.568 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:25.571 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:25.575 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:25.578 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:02:25.581 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/manage/overspeed', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:03:49.896 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 17:03:49.987 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:03:50.014 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:03:50.017 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:03:50.030 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:03:50.034 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:03:50.037 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:03:50.061 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:03:50.072 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:03:50.074 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:03:50.077 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/manage/overspeed', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:04:38.549 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 17:04:38.626 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:04:38.646 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:04:38.648 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:04:38.660 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:04:38.662 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:04:38.665 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:04:38.668 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:04:38.673 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:04:38.675 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:04:38.678 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/manage/overspeed', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:04:42.697 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:04:42.700 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:05:51.534 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 17:05:51.609 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:05:51.629 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:05:51.632 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:05:51.644 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:05:51.646 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:05:51.649 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:05:51.652 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:05:51.657 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:05:51.659 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:05:51.662 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/manage/overspeed', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:08:36.254 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 17:08:36.354 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:08:36.375 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:08:36.381 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:08:36.392 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:08:36.394 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:08:36.398 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:08:36.402 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:08:36.408 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:08:36.411 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:08:36.415 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/manage/overspeed', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:10:48.918 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 17:10:48.982 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/department', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:11:11.729 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:11:19.837 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:13:37.171 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:18:37.194 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:23:36.356 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:27:10.366 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-10 17:27:10.459 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:27:10.483 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:27:10.486 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:27:10.498 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:27:10.505 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/conserve/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:27:10.509 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/build/road_state', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:27:10.513 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:27:10.521 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:27:10.528 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/transportation/statistic', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:27:10.534 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/manage/overspeed', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:32:11.161 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:37:11.165 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:42:13.237 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:47:13.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:52:41.242 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 17:57:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 18:02:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 18:07:41.246 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 18:12:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 18:17:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 18:22:41.246 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 18:27:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 18:32:41.246 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 18:37:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 18:42:41.246 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 18:47:41.239 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 18:52:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 18:57:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 19:02:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 19:07:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 19:12:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 19:17:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 19:22:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 19:27:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 19:32:41.237 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 19:37:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 19:42:41.239 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 19:47:41.237 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 19:52:41.243 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 19:57:41.242 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 20:02:41.246 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 20:07:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 20:12:41.243 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 20:17:41.251 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 20:22:41.247 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 20:27:41.243 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 20:32:41.242 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 20:37:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 20:42:41.244 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 20:47:41.248 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 20:52:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 20:57:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 21:02:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 21:07:41.244 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 21:12:41.237 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 21:17:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 21:22:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 21:27:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 21:32:41.233 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 21:37:41.241 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 21:42:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 21:47:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 21:52:41.243 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 21:57:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 22:02:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 22:07:41.237 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 22:12:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 22:17:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 22:22:41.242 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 22:27:41.243 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 22:32:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 22:37:41.241 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 22:42:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 22:47:41.247 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 22:52:41.237 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 22:57:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 23:02:41.233 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 23:07:41.249 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 23:12:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 23:17:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 23:22:41.241 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 23:27:41.239 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 23:32:41.244 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 23:37:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 23:42:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 23:47:41.237 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 23:52:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-10 23:57:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 00:02:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 00:07:41.242 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 00:12:41.241 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 00:17:41.243 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 00:22:41.244 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 00:27:41.244 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 00:32:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 00:37:41.242 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 00:42:41.246 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 00:47:41.241 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 00:52:41.247 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 00:57:41.244 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 01:02:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 01:07:41.232 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 01:12:41.249 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 01:17:41.247 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 01:22:41.246 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 01:27:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 01:32:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 01:37:41.247 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 01:42:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 01:47:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 01:52:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 01:57:41.237 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 02:02:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 02:07:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 02:12:41.239 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 02:17:41.247 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 02:22:41.239 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 02:27:41.242 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 02:32:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 02:37:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 02:42:41.244 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 02:47:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 02:52:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 02:57:41.237 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 03:02:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 03:07:41.243 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 03:12:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 03:17:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 03:22:41.241 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 03:27:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 03:32:41.241 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 03:37:41.247 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 03:42:41.242 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 03:47:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 03:52:41.243 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 03:57:41.237 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 04:02:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 04:07:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 04:12:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 04:17:41.244 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 04:22:41.248 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 04:27:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 04:32:41.239 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 04:37:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 04:42:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 04:47:41.242 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 04:52:41.239 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 04:57:41.248 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 05:02:41.239 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 05:07:41.237 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 05:12:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 05:17:41.239 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 05:22:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 05:27:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 05:32:41.237 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 05:37:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 05:42:41.243 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 05:47:41.241 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 05:52:41.246 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 05:57:41.239 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 06:02:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 06:07:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 06:12:41.247 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 06:17:41.243 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 06:22:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 06:27:41.249 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 06:32:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 06:37:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 06:42:41.233 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 06:47:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 06:52:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 06:57:41.240 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 07:02:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 07:07:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 07:12:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 07:17:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 07:22:41.242 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 07:27:41.241 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 07:32:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 07:37:41.241 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 07:42:41.243 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 07:47:41.243 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 07:52:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 07:57:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 08:02:41.248 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 08:07:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 08:12:41.242 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 08:17:41.233 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 08:22:41.245 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 08:27:41.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 08:32:41.239 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 08:37:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 08:42:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 08:47:41.235 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 08:52:41.248 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 08:57:41.233 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 09:02:41.242 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 09:07:41.244 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 09:12:41.244 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 09:17:41.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 09:22:41.234 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 09:27:41.247 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 09:29:47.667 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 09:29:47.738 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/department', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 09:29:59.776 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-11 09:30:22.842 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 15:28:46.886 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', -======= - url: 'http://10.8.30.157:9119/manage/overspeed?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', ->>>>>>> Stashed changes - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-11 09:31:01.649 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 15:48:49.835 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/login', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Microsoft Edge";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', -======= - url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', ->>>>>>> Stashed changes - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-11 09:32:42.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 -======= -2022-08-11 15:48:49.864 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 ->>>>>>> Stashed changes - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://localhost:14000/undefined', - headers: { - host: 'localhost:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', ->>>>>>> Stashed changes - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< Updated upstream - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-11 09:33:13.390 - debug: [FS-LOGGER] Init. -2022-08-11 09:33:13.458 - info: [Router] Inject api: attachment/index -2022-08-11 09:33:50.815 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 09:33:51.520 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 09:36:01.436 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 09:47:49.214 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 09:48:55.870 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 09:51:09.370 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 09:55:11.291 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:02:05.357 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:06:24.751 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:07:29.450 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:15:30.360 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:17:15.892 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:18:12.394 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:19:15.946 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:19:39.734 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:20:01.006 - error: [FS-ERRHD] -======= -2022-08-11 15:51:02.705 - error: [FS-ERRHD] ->>>>>>> Stashed changes -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://10.8.30.157:9119/transportation/statistic?token=f8340d18-7bef-4b38-82cc-ea472ada6e29', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'f8340d18-7bef-4b38-82cc-ea472ada6e29', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', ->>>>>>> Stashed changes - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + -<<<<<<< Updated upstream - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-11 10:20:42.203 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:21:15.655 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:22:23.381 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:22:48.186 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:25:30.139 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:26:03.820 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:33:34.752 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:38:01.662 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:38:04.857 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:42:51.046 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:44:38.820 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:44:51.735 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:45:36.054 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:46:44.813 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 10:59:25.084 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:00:04.128 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:01:04.210 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:01:22.845 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:01:40.672 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:02:12.313 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:02:42.441 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:03:19.823 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:03:29.816 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:04:44.071 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:08:54.983 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:09:42.752 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:10:03.738 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:10:03.920 - error: [FS-ERRHD] -======= -2022-08-11 15:51:02.712 - error: [FS-ERRHD] ->>>>>>> Stashed changes -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< Updated upstream - url: 'http://10.8.30.157:9119/build/road_state?token=9b53ac48-3cfd-451c-b684-2a9162d4f064', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '9b53ac48-3cfd-451c-b684-2a9162d4f064', -======= - url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', ->>>>>>> Stashed changes - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< Updated upstream - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> Stashed changes - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + -<<<<<<< Updated upstream - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-08-11 11:11:05.983 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:11:25.518 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:12:26.261 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:12:58.402 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:13:18.073 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:13:28.272 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:13:42.884 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:13:57.469 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:14:09.321 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:15:56.094 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:16:14.001 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:16:26.740 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:16:53.624 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:18:01.733 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:18:23.519 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:18:43.120 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:18:51.754 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:19:01.305 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:20:51.684 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 11:21:37.522 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -<<<<<<< HEAD -<<<<<<< HEAD -2022-08-11 11:27:34.525 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 13:39:25.794 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 13:48:33.828 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 13:49:23.498 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 13:49:49.327 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 13:54:58.819 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 13:57:43.277 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 13:58:05.247 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 13:58:44.967 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:03:49.677 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:04:44.682 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:05:48.319 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:08:17.415 - error: [FS-ERRHD] -======= -======= -<<<<<<< Updated upstream ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 -======= ->>>>>>> Stashed changes -2022-08-11 16:50:04.006 - debug: [FS-LOGGER] Init. -2022-08-11 16:50:04.815 - info: [Router] Inject api: attachment/index -2022-08-11 17:00:36.904 - error: [FS-ERRHD] -<<<<<<< HEAD ->>>>>>> 19b9beb06f6736a29ddc681ae749b4770d47bbb5 -======= -======= -2022-08-11 17:15:17.090 - debug: [FS-LOGGER] Init. -2022-08-11 17:15:17.601 - info: [Router] Inject api: attachment/index -2022-08-11 17:16:30.167 - error: [FS-ERRHD] ->>>>>>> Stashed changes ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< HEAD -<<<<<<< HEAD - url: 'http://10.8.30.157:9119/manage/overspeed/processed?token=f8340d18-7bef-4b38-82cc-ea472ada6e29', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'f8340d18-7bef-4b38-82cc-ea472ada6e29', -======= -======= -<<<<<<< Updated upstream ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - url: 'http://10.8.30.157:9119/transportation/statistic?token=f512f393-bb3e-4f9b-8b9f-7dfe6bd958e5', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'f512f393-bb3e-4f9b-8b9f-7dfe6bd958e5', -<<<<<<< HEAD ->>>>>>> 19b9beb06f6736a29ddc681ae749b4770d47bbb5 -======= -======= - url: 'http://10.8.30.157:9119/department', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/login', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 17:16:31.600 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.157:9119/login', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 17:16:45.960 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.157:9119/login', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 17:18:44.156 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.157:9119/manage/overspeed?token=bce25a51-52bd-4a2e-b7a7-c06f41ecb9c8', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'bce25a51-52bd-4a2e-b7a7-c06f41ecb9c8', ->>>>>>> Stashed changes ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< HEAD - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 19b9beb06f6736a29ddc681ae749b4770d47bbb5 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + -<<<<<<< HEAD -<<<<<<< HEAD - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= -======= -<<<<<<< Updated upstream ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -<<<<<<< HEAD ->>>>>>> 19b9beb06f6736a29ddc681ae749b4770d47bbb5 -======= -======= - ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< HEAD -<<<<<<< HEAD -2022-08-11 14:13:00.068 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:13:16.878 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:14:04.112 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:20:02.202 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:21:07.014 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:21:33.618 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:22:33.038 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:23:33.201 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:23:55.464 - error: [FS-ERRHD] -======= -2022-08-11 17:18:44.582 - error: [FS-ERRHD] ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< HEAD - url: 'http://10.8.30.157:9119/transportation/statistic?token=9b53ac48-3cfd-451c-b684-2a9162d4f064', -======= - url: 'http://10.8.30.157:9119/manage/overspeed?token=bce25a51-52bd-4a2e-b7a7-c06f41ecb9c8', ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', -<<<<<<< HEAD - token: '9b53ac48-3cfd-451c-b684-2a9162d4f064', -======= - token: 'bce25a51-52bd-4a2e-b7a7-c06f41ecb9c8', ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< HEAD - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + -<<<<<<< HEAD - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< HEAD -2022-08-11 14:24:55.443 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:25:58.755 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:26:39.599 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:27:36.650 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:35:46.599 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:36:07.571 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:38:05.206 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:38:24.913 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:38:50.998 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:43:45.871 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:44:12.264 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:44:52.352 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:45:13.732 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:46:19.121 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:50:16.960 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:51:03.623 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:51:32.595 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:52:02.216 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:52:14.836 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:52:23.385 - error: [FS-ERRHD] -======= -2022-08-11 17:18:59.559 - error: [FS-ERRHD] ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< HEAD - url: 'http://10.8.30.157:9119/build/road_state?token=f8340d18-7bef-4b38-82cc-ea472ada6e29', -======= - url: 'http://10.8.30.157:9119/department?token=bce25a51-52bd-4a2e-b7a7-c06f41ecb9c8', ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', -<<<<<<< HEAD - token: 'f8340d18-7bef-4b38-82cc-ea472ada6e29', -======= - token: 'bce25a51-52bd-4a2e-b7a7-c06f41ecb9c8', ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - referer: 'http://localhost:5000/screen', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + -<<<<<<< HEAD - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< HEAD -2022-08-11 14:52:43.940 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:53:43.867 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:54:05.073 - error: [FS-ERRHD] -======= -2022-08-11 17:26:49.801 - error: [FS-ERRHD] ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< HEAD - url: 'http://10.8.30.157:9119/transportation/statistic?token=f8340d18-7bef-4b38-82cc-ea472ada6e29', -======= - url: 'http://10.8.30.157:9119/vehicle?token=bce25a51-52bd-4a2e-b7a7-c06f41ecb9c8', ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', -<<<<<<< HEAD - token: 'f8340d18-7bef-4b38-82cc-ea472ada6e29', -======= - token: 'bce25a51-52bd-4a2e-b7a7-c06f41ecb9c8', ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + -<<<<<<< HEAD - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + -======= - ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ->>>>>>> Stashed changes ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< HEAD -2022-08-11 14:54:34.648 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:55:18.595 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:55:32.898 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:56:04.889 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:56:18.640 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:56:31.567 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:57:07.992 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:58:30.183 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 14:58:33.760 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:01:16.023 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:04:44.817 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:05:07.176 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.157:9119/transportation/statistic?token=9b53ac48-3cfd-451c-b684-2a9162d4f064', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '9b53ac48-3cfd-451c-b684-2a9162d4f064', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 15:06:23.163 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:07:40.372 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:08:27.305 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:09:59.726 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:14:55.792 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:15:17.388 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.157:9119/manage/overspeed?token=9b53ac48-3cfd-451c-b684-2a9162d4f064', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '9b53ac48-3cfd-451c-b684-2a9162d4f064', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 15:15:46.993 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:16:04.057 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:16:37.437 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:18:00.599 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:18:16.593 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:20:20.978 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:21:43.164 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:23:25.019 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:23:29.764 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:23:33.178 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:24:05.749 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:24:23.906 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:27:58.169 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:28:01.400 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:29:02.723 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:29:10.322 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:29:28.582 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:29:59.346 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:31:19.489 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:32:26.813 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:32:43.202 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:33:02.855 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:33:16.690 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:34:09.693 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:34:48.476 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:35:07.568 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:35:19.450 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:39:02.405 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:39:40.512 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:39:53.316 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:40:45.847 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:41:09.777 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:41:34.263 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:41:51.204 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:42:06.459 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:42:20.582 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:42:59.577 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:43:35.482 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:43:51.134 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:44:07.476 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:44:21.551 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:44:29.677 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:44:30.175 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.157:9119/manage/overspeed?token=9b53ac48-3cfd-451c-b684-2a9162d4f064', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '9b53ac48-3cfd-451c-b684-2a9162d4f064', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-08-11 15:44:30.255 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 9119 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.157:9119/manage/overspeed?token=9b53ac48-3cfd-451c-b684-2a9162d4f064', - headers: { - host: '10.8.30.157:9119', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '9b53ac48-3cfd-451c-b684-2a9162d4f064', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -71214,13 +30243,13 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -71228,79 +30257,39 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-08-11 15:44:34.374 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:45:37.206 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:46:39.734 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:47:57.918 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 15:48:19.047 - error: [FS-ERRHD] +2022-09-01 17:03:36.901 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '10.8.30.157', - port: 9119 + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.157:9119/transportation/statistic?token=9b53ac48-3cfd-451c-b684-2a9162d4f064', + url: 'http://localhost:14000/road/maintenance?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '10.8.30.157:9119', + host: 'localhost:14000', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '9b53ac48-3cfd-451c-b684-2a9162d4f064', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', + referer: 'http://localhost:5000/fillion/highways', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -71313,13 +30302,13 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -71327,39 +30316,39 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-08-11 15:48:19.049 - error: [FS-ERRHD] +2022-09-01 17:03:38.640 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', + errno: 'ECONNREFUSED', + code: 'ECONNREFUSED', syscall: 'connect', - address: '10.8.30.157', - port: 9119 + address: '127.0.0.1', + port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.157:9119/build/road_state?token=9b53ac48-3cfd-451c-b684-2a9162d4f064', + url: 'http://localhost:14000/road_manage?token=00b84f42-f69d-47b4-8b36-2677ddd420e1', headers: { - host: '10.8.30.157:9119', + host: 'localhost:14000', connection: 'keep-alive', 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', - token: '9b53ac48-3cfd-451c-b684-2a9162d4f064', + token: '00b84f42-f69d-47b4-8b36-2677ddd420e1', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/screen/cockpit', + referer: 'http://localhost:5000/fillion/highways', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' + 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, @@ -71372,13 +30361,13 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + - ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + + ' at new RequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -71386,133 +30375,9 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } -2022-08-11 16:11:35.901 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 17:02:37.841 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 17:10:22.109 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 17:14:24.331 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 17:15:28.893 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 17:17:56.664 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 17:18:28.852 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 17:18:49.839 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 17:20:06.230 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 17:22:54.324 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-11 17:23:51.544 - error: [FS-ERRHD] -{ - message: 'qndmn is not defined', - stack: 'ReferenceError: qndmn is not defined\n' + - ' at getApiRoot (F:\\Highways4Good\\web\\routes\\attachment\\index.js:24:40)\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:44:32)\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-compose\\index.js:36:12\n' + - ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + - ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' -} -2022-08-12 09:20:48.242 - debug: [FS-LOGGER] Init. -2022-08-12 09:20:48.461 - info: [Router] Inject api: attachment/index -2022-08-12 09:23:10.771 - debug: [FS-LOGGER] Init. -2022-08-12 09:23:10.830 - info: [Router] Inject api: attachment/index -======= ->>>>>>> 19b9beb06f6736a29ddc681ae749b4770d47bbb5 -2022-08-12 09:32:03.548 - debug: [FS-LOGGER] Init. -2022-08-12 09:32:03.611 - info: [Router] Inject api: attachment/index -======= -2022-08-12 09:48:32.452 - debug: [FS-LOGGER] Init. -2022-08-12 09:48:32.517 - info: [Router] Inject api: attachment/index -2022-08-12 10:13:00.182 - debug: [FS-LOGGER] Init. -2022-08-12 10:13:00.237 - info: [Router] Inject api: attachment/index -2022-08-12 10:36:42.015 - debug: [FS-LOGGER] Init. -2022-08-12 10:36:42.064 - info: [Router] Inject api: attachment/index ->>>>>>> 6fc3f0d2da5ea0fafc21a362197eaf08c92d9f90 -2022-08-12 15:25:11.099 - debug: [FS-LOGGER] Init. -2022-08-12 15:25:11.168 - info: [Router] Inject api: attachment/index -2022-08-12 15:36:12.317 - debug: [FS-LOGGER] Init. -2022-08-12 15:36:12.386 - info: [Router] Inject api: attachment/index +2022-09-01 17:12:43.530 - debug: [FS-LOGGER] Init. +2022-09-01 17:12:44.000 - info: [Router] Inject api: attachment/index +2022-09-01 18:26:45.045 - debug: [FS-LOGGER] Init. +2022-09-01 18:26:45.562 - info: [Router] Inject api: attachment/index +2022-09-05 14:03:41.310 - debug: [FS-LOGGER] Init. +2022-09-05 14:03:41.810 - info: [Router] Inject api: attachment/index diff --git a/web/package-lock.json b/web/package-lock.json index 31e24a83..455a90a6 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -2579,18 +2579,18 @@ "dependencies": { "ansi-styles": { "version": "3.2.1", - "bundled": true, + "resolved": false, "requires": { "color-convert": "^1.9.0" } }, "asap": { "version": "2.0.6", - "bundled": true + "resolved": false }, "asn1": { "version": "0.2.4", - "bundled": true, + "resolved": false, "optional": true, "requires": { "safer-buffer": "~2.1.0" @@ -2598,31 +2598,31 @@ }, "assert-plus": { "version": "1.0.0", - "bundled": true, + "resolved": false, "optional": true }, "asynckit": { "version": "0.4.0", - "bundled": true, + "resolved": false, "optional": true }, "aws-sign2": { "version": "0.7.0", - "bundled": true, + "resolved": false, "optional": true }, "aws4": { "version": "1.8.0", - "bundled": true, + "resolved": false, "optional": true }, "balanced-match": { "version": "1.0.0", - "bundled": true + "resolved": false }, "bcrypt-pbkdf": { "version": "1.0.2", - "bundled": true, + "resolved": false, "optional": true, "requires": { "tweetnacl": "^0.14.3" @@ -2630,7 +2630,7 @@ }, "brace-expansion": { "version": "1.1.11", - "bundled": true, + "resolved": false, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -2638,12 +2638,12 @@ }, "caseless": { "version": "0.12.0", - "bundled": true, + "resolved": false, "optional": true }, "chalk": { "version": "2.4.1", - "bundled": true, + "resolved": false, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -2652,22 +2652,22 @@ }, "clone": { "version": "2.1.2", - "bundled": true + "resolved": false }, "color-convert": { "version": "1.9.2", - "bundled": true, + "resolved": false, "requires": { "color-name": "1.1.1" } }, "color-name": { "version": "1.1.1", - "bundled": true + "resolved": false }, "combined-stream": { "version": "1.0.7", - "bundled": true, + "resolved": false, "optional": true, "requires": { "delayed-stream": "~1.0.0" @@ -2675,16 +2675,16 @@ }, "concat-map": { "version": "0.0.1", - "bundled": true + "resolved": false }, "core-util-is": { "version": "1.0.2", - "bundled": true, + "resolved": false, "optional": true }, "dashdash": { "version": "1.14.1", - "bundled": true, + "resolved": false, "optional": true, "requires": { "assert-plus": "^1.0.0" @@ -2692,12 +2692,12 @@ }, "delayed-stream": { "version": "1.0.0", - "bundled": true, + "resolved": false, "optional": true }, "ecc-jsbn": { "version": "0.1.2", - "bundled": true, + "resolved": false, "optional": true, "requires": { "jsbn": "~0.1.0", @@ -2706,7 +2706,7 @@ }, "errno": { "version": "0.1.7", - "bundled": true, + "resolved": false, "optional": true, "requires": { "prr": "~1.0.1" @@ -2714,31 +2714,31 @@ }, "escape-string-regexp": { "version": "1.0.5", - "bundled": true + "resolved": false }, "extend": { "version": "3.0.2", - "bundled": true, + "resolved": false, "optional": true }, "extsprintf": { "version": "1.3.0", - "bundled": true, + "resolved": false, "optional": true }, "fast-json-stable-stringify": { "version": "2.0.0", - "bundled": true, + "resolved": false, "optional": true }, "forever-agent": { "version": "0.6.1", - "bundled": true, + "resolved": false, "optional": true }, "form-data": { "version": "2.3.3", - "bundled": true, + "resolved": false, "optional": true, "requires": { "asynckit": "^0.4.0", @@ -2748,11 +2748,11 @@ }, "fs.realpath": { "version": "1.0.0", - "bundled": true + "resolved": false }, "getpass": { "version": "0.1.7", - "bundled": true, + "resolved": false, "optional": true, "requires": { "assert-plus": "^1.0.0" @@ -2760,7 +2760,7 @@ }, "glob": { "version": "7.1.3", - "bundled": true, + "resolved": false, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -2772,17 +2772,17 @@ }, "graceful-fs": { "version": "4.1.15", - "bundled": true, + "resolved": false, "optional": true }, "har-schema": { "version": "2.0.0", - "bundled": true, + "resolved": false, "optional": true }, "har-validator": { "version": "5.1.3", - "bundled": true, + "resolved": false, "optional": true, "requires": { "ajv": "^6.5.5", @@ -2791,7 +2791,7 @@ "dependencies": { "ajv": { "version": "6.6.2", - "bundled": true, + "resolved": false, "optional": true, "requires": { "fast-deep-equal": "^2.0.1", @@ -2802,18 +2802,18 @@ }, "fast-deep-equal": { "version": "2.0.1", - "bundled": true, + "resolved": false, "optional": true } } }, "has-flag": { "version": "3.0.0", - "bundled": true + "resolved": false }, "hash.js": { "version": "1.1.7", - "bundled": true, + "resolved": false, "requires": { "inherits": "^2.0.3", "minimalistic-assert": "^1.0.1" @@ -2821,7 +2821,7 @@ }, "http-signature": { "version": "1.2.0", - "bundled": true, + "resolved": false, "optional": true, "requires": { "assert-plus": "^1.0.0", @@ -2831,12 +2831,12 @@ }, "image-size": { "version": "0.5.5", - "bundled": true, + "resolved": false, "optional": true }, "inflight": { "version": "1.0.6", - "bundled": true, + "resolved": false, "requires": { "once": "^1.3.0", "wrappy": "1" @@ -2844,45 +2844,45 @@ }, "inherits": { "version": "2.0.3", - "bundled": true + "resolved": false }, "is-regexp": { "version": "2.1.0", - "bundled": true + "resolved": false }, "is-typedarray": { "version": "1.0.0", - "bundled": true, + "resolved": false, "optional": true }, "isstream": { "version": "0.1.2", - "bundled": true, + "resolved": false, "optional": true }, "jsbn": { "version": "0.1.1", - "bundled": true, + "resolved": false, "optional": true }, "json-schema": { "version": "0.2.3", - "bundled": true, + "resolved": false, "optional": true }, "json-schema-traverse": { "version": "0.4.1", - "bundled": true, + "resolved": false, "optional": true }, "json-stringify-safe": { "version": "5.0.1", - "bundled": true, + "resolved": false, "optional": true }, "jsprim": { "version": "1.4.1", - "bundled": true, + "resolved": false, "optional": true, "requires": { "assert-plus": "1.0.0", @@ -2893,7 +2893,7 @@ }, "less": { "version": "3.9.0", - "bundled": true, + "resolved": false, "requires": { "clone": "^2.1.2", "errno": "^0.1.1", @@ -2908,7 +2908,7 @@ }, "less-plugin-npm-import": { "version": "2.1.0", - "bundled": true, + "resolved": false, "requires": { "promise": "~7.0.1", "resolve": "~1.1.6" @@ -2916,30 +2916,30 @@ "dependencies": { "promise": { "version": "7.0.4", - "bundled": true, + "resolved": false, "requires": { "asap": "~2.0.3" } }, "resolve": { "version": "1.1.7", - "bundled": true + "resolved": false } } }, "mime": { "version": "1.6.0", - "bundled": true, + "resolved": false, "optional": true }, "mime-db": { "version": "1.37.0", - "bundled": true, + "resolved": false, "optional": true }, "mime-types": { "version": "2.1.21", - "bundled": true, + "resolved": false, "optional": true, "requires": { "mime-db": "~1.37.0" @@ -2947,23 +2947,23 @@ }, "minimalistic-assert": { "version": "1.0.1", - "bundled": true + "resolved": false }, "minimatch": { "version": "3.0.4", - "bundled": true, + "resolved": false, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "1.2.5", - "bundled": true, + "resolved": false, "optional": true }, "mkdirp": { "version": "0.5.5", - "bundled": true, + "resolved": false, "optional": true, "requires": { "minimist": "^1.2.5" @@ -2971,28 +2971,28 @@ }, "oauth-sign": { "version": "0.9.0", - "bundled": true, + "resolved": false, "optional": true }, "once": { "version": "1.4.0", - "bundled": true, + "resolved": false, "requires": { "wrappy": "1" } }, "path-is-absolute": { "version": "1.0.1", - "bundled": true + "resolved": false }, "performance-now": { "version": "2.1.0", - "bundled": true, + "resolved": false, "optional": true }, "postcss": { "version": "6.0.23", - "bundled": true, + "resolved": false, "requires": { "chalk": "^2.4.1", "source-map": "^0.6.1", @@ -3001,7 +3001,7 @@ }, "promise": { "version": "7.3.1", - "bundled": true, + "resolved": false, "optional": true, "requires": { "asap": "~2.0.3" @@ -3009,27 +3009,27 @@ }, "prr": { "version": "1.0.1", - "bundled": true, + "resolved": false, "optional": true }, "psl": { "version": "1.1.31", - "bundled": true, + "resolved": false, "optional": true }, "punycode": { "version": "2.1.1", - "bundled": true, + "resolved": false, "optional": true }, "qs": { "version": "6.5.2", - "bundled": true, + "resolved": false, "optional": true }, "request": { "version": "2.88.0", - "bundled": true, + "resolved": false, "optional": true, "requires": { "aws-sign2": "~0.7.0", @@ -3056,21 +3056,21 @@ }, "safe-buffer": { "version": "5.1.2", - "bundled": true, + "resolved": false, "optional": true }, "safer-buffer": { "version": "2.1.2", - "bundled": true, + "resolved": false, "optional": true }, "source-map": { "version": "0.6.1", - "bundled": true + "resolved": false }, "sshpk": { "version": "1.15.2", - "bundled": true, + "resolved": false, "optional": true, "requires": { "asn1": "~0.2.3", @@ -3086,21 +3086,21 @@ }, "strip-css-comments": { "version": "4.1.0", - "bundled": true, + "resolved": false, "requires": { "is-regexp": "^2.1.0" } }, "supports-color": { "version": "5.4.0", - "bundled": true, + "resolved": false, "requires": { "has-flag": "^3.0.0" } }, "tough-cookie": { "version": "2.4.3", - "bundled": true, + "resolved": false, "optional": true, "requires": { "psl": "^1.1.24", @@ -3109,14 +3109,14 @@ "dependencies": { "punycode": { "version": "1.4.1", - "bundled": true, + "resolved": false, "optional": true } } }, "tunnel-agent": { "version": "0.6.0", - "bundled": true, + "resolved": false, "optional": true, "requires": { "safe-buffer": "^5.0.1" @@ -3124,12 +3124,12 @@ }, "tweetnacl": { "version": "0.14.5", - "bundled": true, + "resolved": false, "optional": true }, "uri-js": { "version": "4.2.2", - "bundled": true, + "resolved": false, "optional": true, "requires": { "punycode": "^2.1.0" @@ -3137,12 +3137,12 @@ }, "uuid": { "version": "3.3.2", - "bundled": true, + "resolved": false, "optional": true }, "verror": { "version": "1.10.0", - "bundled": true, + "resolved": false, "optional": true, "requires": { "assert-plus": "^1.0.0", @@ -3152,7 +3152,7 @@ }, "wrappy": { "version": "1.0.2", - "bundled": true + "resolved": false } } }, diff --git a/web/package.json b/web/package.json index 7cd3d607..5f4f3de9 100644 --- a/web/package.json +++ b/web/package.json @@ -6,7 +6,7 @@ "scripts": { "test": "mocha", "start": "cross-env NODE_ENV=development npm run start-params", - "start-params": "node server -p 5000 -u http://localhost:14000 --qndmn http://rfkimpwbb.hn-bkt.clouddn.com", + "start-params": "node server -p 5000 -u http://localhost:14000 --qndmn http://rfkimpwbb.hn-bkt.clouddn.com", "deploy": "export NODE_ENV=production&&npm run color && npm run build && node server", "build-dev": "export NODE_ENV=development&&webpack --config webpack.config.js", "build": "export NODE_ENV=production&&webpack --config webpack.config.prod.js",