@operato/scene-visualizer 1.2.45 → 1.2.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/db.sqlite +0 -0
- package/dist/editors/property-editor-gltf-info.js.map +1 -1
- package/dist/editors/property-editor-location-increase-pattern.js.map +1 -1
- package/dist/rack-table.d.ts +2 -1
- package/dist/rack-table.js.map +1 -1
- package/dist/rack.js +1 -2
- package/dist/rack.js.map +1 -1
- package/dist/stock.js +1 -2
- package/dist/stock.js.map +1 -1
- package/dist/threed/real-object-gltf.js +1 -2
- package/dist/threed/real-object-gltf.js.map +1 -1
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +3 -23
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +3 -23
- package/logs/application-2023-06-26-21.log +5 -0
- package/logs/connections-2023-06-26-21.log +38 -0
- package/package.json +2 -2
- package/schema.gql +184 -39
- package/src/component.d.ts +0 -1
- package/src/rack-table.ts +2 -1
- package/tsconfig.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/camera copy.d.ts +0 -20
- package/dist/camera copy.js +0 -103
- package/dist/camera copy.js.map +0 -1
- package/dist/point-light.d.ts +0 -14
- package/dist/point-light.js +0 -77
- package/dist/point-light.js.map +0 -1
- package/dist/templates/point-light.d.ts +0 -22
- package/dist/templates/point-light.js +0 -23
- package/dist/templates/point-light.js.map +0 -1
- package/dist/templates/wall copy.d.ts +0 -19
- package/dist/templates/wall copy.js +0 -20
- package/dist/templates/wall copy.js.map +0 -1
- package/dist/three-modeller.d.ts +0 -0
- package/dist/three-modeller.js +0 -2
- package/dist/three-modeller.js.map +0 -1
- package/logs/application-2023-05-23-21.log +0 -6
- package/logs/application-2023-05-24-21.log +0 -6
- package/logs/application-2023-05-25-00.log +0 -20
- package/logs/application-2023-05-25-15.log +0 -6
- package/logs/application-2023-05-25-16.log +0 -5
- package/logs/connections-2023-05-20-07.log +0 -41
- package/logs/connections-2023-05-23-21.log +0 -41
- package/logs/connections-2023-05-24-21.log +0 -41
- package/logs/connections-2023-05-25-00.log +0 -123
- package/logs/connections-2023-05-25-15.log +0 -41
package/dist/point-light.js
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright © HatioLab Inc. All rights reserved.
|
|
3
|
-
*/
|
|
4
|
-
import { Component, Ellipse } from '@hatiolab/things-scene';
|
|
5
|
-
import * as THREE from 'three';
|
|
6
|
-
import { RealObject } from './threed/real-object';
|
|
7
|
-
const DEFAULT = {
|
|
8
|
-
color: '0xffffff',
|
|
9
|
-
intensity: 100000,
|
|
10
|
-
distance: 0,
|
|
11
|
-
decay: 1,
|
|
12
|
-
castShadow: false
|
|
13
|
-
};
|
|
14
|
-
const NATURE = {
|
|
15
|
-
mutable: false,
|
|
16
|
-
resizable: true,
|
|
17
|
-
rotatable: true,
|
|
18
|
-
properties: [
|
|
19
|
-
{
|
|
20
|
-
type: 'number',
|
|
21
|
-
label: 'intensity',
|
|
22
|
-
name: 'intensity'
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
type: 'number',
|
|
26
|
-
label: 'distance',
|
|
27
|
-
name: 'distance'
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
type: 'number',
|
|
31
|
-
label: 'decay',
|
|
32
|
-
name: 'decay'
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
type: 'checkbox',
|
|
36
|
-
label: 'cast-shadow',
|
|
37
|
-
name: 'castShadow'
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
help: 'scene/component/point-light'
|
|
41
|
-
};
|
|
42
|
-
export class PointLightObject extends RealObject {
|
|
43
|
-
updatePointLight() {
|
|
44
|
-
var { distance = DEFAULT.distance, intensity = DEFAULT.intensity, decay = DEFAULT.decay, fillStyle: color = DEFAULT.color, castShadow } = this.component.state;
|
|
45
|
-
this.object3d.color = new THREE.Color(color);
|
|
46
|
-
this.object3d.distance = distance;
|
|
47
|
-
this.object3d.intensity = intensity;
|
|
48
|
-
this.object3d.decay = decay;
|
|
49
|
-
this.object3d.castShadow = !!castShadow;
|
|
50
|
-
}
|
|
51
|
-
getObject3dInstance() {
|
|
52
|
-
return new THREE.PointLight();
|
|
53
|
-
}
|
|
54
|
-
update() {
|
|
55
|
-
this.clear();
|
|
56
|
-
this.build();
|
|
57
|
-
this.updateDimension();
|
|
58
|
-
this.updateHidden();
|
|
59
|
-
this.updatePointLight();
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
export class PointLight extends Ellipse {
|
|
63
|
-
is3dish() {
|
|
64
|
-
return true;
|
|
65
|
-
}
|
|
66
|
-
buildRealObject() {
|
|
67
|
-
return new PointLightObject(this);
|
|
68
|
-
}
|
|
69
|
-
get anchors() {
|
|
70
|
-
return [];
|
|
71
|
-
}
|
|
72
|
-
get nature() {
|
|
73
|
-
return NATURE;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
Component.register('point-light', PointLight);
|
|
77
|
-
//# sourceMappingURL=point-light.js.map
|
package/dist/point-light.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"point-light.js","sourceRoot":"","sources":["../src/point-light.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAU,SAAS,EAAmB,OAAO,EAAE,MAAM,wBAAwB,CAAA;AACpF,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AAEjD,MAAM,OAAO,GAAG;IACd,KAAK,EAAE,UAAU;IACjB,SAAS,EAAE,MAAM;IACjB,QAAQ,EAAE,CAAC;IACX,KAAK,EAAE,CAAC;IACR,UAAU,EAAE,KAAK;CAClB,CAAA;AAED,MAAM,MAAM,GAAG;IACb,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;IACf,UAAU,EAAE;QACV;YACE,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,WAAW;YAClB,IAAI,EAAE,WAAW;SAClB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,UAAU;YACjB,IAAI,EAAE,UAAU;SACjB;QACD;YACE,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,OAAO;YACd,IAAI,EAAE,OAAO;SACd;QACD;YACE,IAAI,EAAE,UAAU;YAChB,KAAK,EAAE,aAAa;YACpB,IAAI,EAAE,YAAY;SACnB;KACF;IACD,IAAI,EAAE,6BAA6B;CACpC,CAAA;AAED,MAAM,OAAO,gBAAiB,SAAQ,UAA4B;IAChE,gBAAgB;QACd,IAAI,EACF,QAAQ,GAAG,OAAO,CAAC,QAAQ,EAC3B,SAAS,GAAG,OAAO,CAAC,SAAS,EAC7B,KAAK,GAAG,OAAO,CAAC,KAAK,EACrB,SAAS,EAAE,KAAK,GAAG,OAAO,CAAC,KAAK,EAChC,UAAU,EACX,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAA;QAExB,IAAI,CAAC,QAAS,CAAC,KAAK,GAAG,IAAI,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAA;QAC7C,IAAI,CAAC,QAAS,CAAC,QAAQ,GAAG,QAAQ,CAAA;QAClC,IAAI,CAAC,QAAS,CAAC,SAAS,GAAG,SAAS,CAAA;QACpC,IAAI,CAAC,QAAS,CAAC,KAAK,GAAG,KAAK,CAAA;QAC5B,IAAI,CAAC,QAAS,CAAC,UAAU,GAAG,CAAC,CAAC,UAAU,CAAA;IAC1C,CAAC;IAES,mBAAmB;QAC3B,OAAO,IAAI,KAAK,CAAC,UAAU,EAAsB,CAAA;IACnD,CAAC;IAED,MAAM;QACJ,IAAI,CAAC,KAAK,EAAE,CAAA;QACZ,IAAI,CAAC,KAAK,EAAE,CAAA;QAEZ,IAAI,CAAC,eAAe,EAAE,CAAA;QACtB,IAAI,CAAC,YAAY,EAAE,CAAA;QAEnB,IAAI,CAAC,gBAAgB,EAAE,CAAA;IACzB,CAAC;CACF;AAED,MAAM,OAAO,UAAW,SAAQ,OAAO;IACrC,OAAO;QACL,OAAO,IAAI,CAAA;IACb,CAAC;IAED,eAAe;QACb,OAAO,IAAI,gBAAgB,CAAC,IAAI,CAAC,CAAA;IACnC,CAAC;IAED,IAAI,OAAO;QACT,OAAO,EAAE,CAAA;IACX,CAAC;IAED,IAAI,MAAM;QACR,OAAO,MAAM,CAAA;IACf,CAAC;CACF;AAED,SAAS,CAAC,QAAQ,CAAC,aAAa,EAAE,UAAU,CAAC,CAAA","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\nimport { Anchor, Component, ComponentNature, Ellipse } from '@hatiolab/things-scene'\nimport * as THREE from 'three'\nimport { RealObject } from './threed/real-object'\n\nconst DEFAULT = {\n color: '0xffffff', // white color\n intensity: 100000,\n distance: 0, // unlimited\n decay: 1, //\n castShadow: false\n}\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'number',\n label: 'intensity',\n name: 'intensity'\n },\n {\n type: 'number',\n label: 'distance',\n name: 'distance'\n },\n {\n type: 'number',\n label: 'decay',\n name: 'decay'\n },\n {\n type: 'checkbox',\n label: 'cast-shadow',\n name: 'castShadow'\n }\n ],\n help: 'scene/component/point-light'\n}\n\nexport class PointLightObject extends RealObject<THREE.PointLight> {\n updatePointLight() {\n var {\n distance = DEFAULT.distance,\n intensity = DEFAULT.intensity,\n decay = DEFAULT.decay,\n fillStyle: color = DEFAULT.color,\n castShadow\n } = this.component.state\n\n this.object3d!.color = new THREE.Color(color)\n this.object3d!.distance = distance\n this.object3d!.intensity = intensity\n this.object3d!.decay = decay\n this.object3d!.castShadow = !!castShadow\n }\n\n protected getObject3dInstance(): THREE.PointLight {\n return new THREE.PointLight() as THREE.PointLight\n }\n\n update() {\n this.clear()\n this.build()\n\n this.updateDimension()\n this.updateHidden()\n\n this.updatePointLight()\n }\n}\n\nexport class PointLight extends Ellipse {\n is3dish() {\n return true\n }\n\n buildRealObject(): RealObject | undefined {\n return new PointLightObject(this)\n }\n\n get anchors(): Array<Anchor> {\n return []\n }\n\n get nature(): ComponentNature {\n return NATURE\n }\n}\n\nComponent.register('point-light', PointLight)\n"]}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
type: string;
|
|
3
|
-
description: string;
|
|
4
|
-
group: string;
|
|
5
|
-
icon: string;
|
|
6
|
-
model: {
|
|
7
|
-
type: string;
|
|
8
|
-
rx: number;
|
|
9
|
-
ry: number;
|
|
10
|
-
cx: number;
|
|
11
|
-
cy: number;
|
|
12
|
-
zPos: number;
|
|
13
|
-
fillStyle: string;
|
|
14
|
-
strokeStyle: string;
|
|
15
|
-
alpha: number;
|
|
16
|
-
hidden: boolean;
|
|
17
|
-
lineWidth: number;
|
|
18
|
-
lineDash: string;
|
|
19
|
-
lineCap: string;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
22
|
-
export default _default;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
const icon = new URL('../../icons/point-light.png', import.meta.url).href;
|
|
2
|
-
export default {
|
|
3
|
-
type: 'point-light',
|
|
4
|
-
description: 'Point Light',
|
|
5
|
-
group: '3D' /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */,
|
|
6
|
-
icon,
|
|
7
|
-
model: {
|
|
8
|
-
type: 'point-light',
|
|
9
|
-
rx: 50,
|
|
10
|
-
ry: 50,
|
|
11
|
-
cx: 150,
|
|
12
|
-
cy: 150,
|
|
13
|
-
zPos: 100,
|
|
14
|
-
fillStyle: '#fff',
|
|
15
|
-
strokeStyle: '#000',
|
|
16
|
-
alpha: 1,
|
|
17
|
-
hidden: false,
|
|
18
|
-
lineWidth: 1,
|
|
19
|
-
lineDash: 'solid',
|
|
20
|
-
lineCap: 'butt'
|
|
21
|
-
}
|
|
22
|
-
};
|
|
23
|
-
//# sourceMappingURL=point-light.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"point-light.js","sourceRoot":"","sources":["../../src/templates/point-light.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,6BAA6B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEzE,eAAe;IACb,IAAI,EAAE,aAAa;IACnB,WAAW,EAAE,aAAa;IAC1B,KAAK,EAAE,IAAI,CAAC,gGAAgG;IAC5G,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,aAAa;QACnB,EAAE,EAAE,EAAE;QACN,EAAE,EAAE,EAAE;QACN,EAAE,EAAE,GAAG;QACP,EAAE,EAAE,GAAG;QACP,IAAI,EAAE,GAAG;QACT,SAAS,EAAE,MAAM;QACjB,WAAW,EAAE,MAAM;QACnB,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,KAAK;QACb,SAAS,EAAE,CAAC;QACZ,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE,MAAM;KAChB;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/point-light.png', import.meta.url).href\n\nexport default {\n type: 'point-light',\n description: 'Point Light',\n group: '3D' /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */,\n icon,\n model: {\n type: 'point-light',\n rx: 50,\n ry: 50,\n cx: 150,\n cy: 150,\n zPos: 100,\n fillStyle: '#fff',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 1,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n}\n"]}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
type: string;
|
|
3
|
-
description: string;
|
|
4
|
-
group: string;
|
|
5
|
-
icon: string;
|
|
6
|
-
model: {
|
|
7
|
-
type: string;
|
|
8
|
-
left: number;
|
|
9
|
-
top: number;
|
|
10
|
-
width: number;
|
|
11
|
-
height: number;
|
|
12
|
-
depth: number;
|
|
13
|
-
fillStyle: string;
|
|
14
|
-
strokeStyle: string;
|
|
15
|
-
lineWidth: number;
|
|
16
|
-
alpha: number;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
export default _default;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
const icon = new URL('../../icons/wall.png', import.meta.url).href;
|
|
2
|
-
export default {
|
|
3
|
-
type: 'wall',
|
|
4
|
-
description: '3D wall',
|
|
5
|
-
group: '3D' /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */,
|
|
6
|
-
icon,
|
|
7
|
-
model: {
|
|
8
|
-
type: 'wall',
|
|
9
|
-
left: 100,
|
|
10
|
-
top: 100,
|
|
11
|
-
width: 100,
|
|
12
|
-
height: 100,
|
|
13
|
-
depth: 50,
|
|
14
|
-
fillStyle: '#ffffff',
|
|
15
|
-
strokeStyle: '#999',
|
|
16
|
-
lineWidth: 1,
|
|
17
|
-
alpha: 1
|
|
18
|
-
}
|
|
19
|
-
};
|
|
20
|
-
//# sourceMappingURL=wall%20copy.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"wall copy.js","sourceRoot":"","sources":["../../src/templates/wall copy.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,sBAAsB,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAElE,eAAe;IACb,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,SAAS;IACtB,KAAK,EAAE,IAAI,CAAC,gGAAgG;IAC5G,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,GAAG;QACX,KAAK,EAAE,EAAE;QACT,SAAS,EAAE,SAAS;QACpB,WAAW,EAAE,MAAM;QACnB,SAAS,EAAE,CAAC;QACZ,KAAK,EAAE,CAAC;KACT;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/wall.png', import.meta.url).href\n\nexport default {\n type: 'wall',\n description: '3D wall',\n group: '3D' /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */,\n icon,\n model: {\n type: 'wall',\n left: 100,\n top: 100,\n width: 100,\n height: 100,\n depth: 50,\n fillStyle: '#ffffff',\n strokeStyle: '#999',\n lineWidth: 1,\n alpha: 1\n }\n}\n"]}
|
package/dist/three-modeller.d.ts
DELETED
|
File without changes
|
package/dist/three-modeller.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"three-modeller.js","sourceRoot":"","sources":["../src/three-modeller.ts"],"names":[],"mappings":"","sourcesContent":[""]}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
2023-05-23T21:42:12+09:00 info: File Storage is Ready.
|
|
2
|
-
2023-05-23T21:42:13+09:00 error: oracledb module loading failed
|
|
3
|
-
2023-05-23T21:42:13+09:00 info: Default DataSource established
|
|
4
|
-
2023-05-23T21:42:14+09:00 info: Transaction DataSource established
|
|
5
|
-
2023-05-23T21:42:14+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
-
2023-05-23T21:42:14+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
2023-05-24T21:23:41+09:00 info: File Storage is Ready.
|
|
2
|
-
2023-05-24T21:23:41+09:00 error: oracledb module loading failed
|
|
3
|
-
2023-05-24T21:23:42+09:00 info: Default DataSource established
|
|
4
|
-
2023-05-24T21:23:42+09:00 info: Transaction DataSource established
|
|
5
|
-
2023-05-24T21:23:43+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
-
2023-05-24T21:23:43+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
2023-05-25T00:03:30+09:00 info: File Storage is Ready.
|
|
2
|
-
2023-05-25T00:03:31+09:00 error: oracledb module loading failed
|
|
3
|
-
2023-05-25T00:03:31+09:00 info: Default DataSource established
|
|
4
|
-
2023-05-25T00:03:31+09:00 info: Transaction DataSource established
|
|
5
|
-
2023-05-25T00:03:32+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
-
2023-05-25T00:03:32+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
7
|
-
2023-05-25T00:12:11+09:00 error: thumbnail not found
|
|
8
|
-
2023-05-25T00:12:13+09:00 error: thumbnail not found
|
|
9
|
-
2023-05-25T00:27:18+09:00 info: File Storage is Ready.
|
|
10
|
-
2023-05-25T00:27:19+09:00 error: oracledb module loading failed
|
|
11
|
-
2023-05-25T00:27:20+09:00 info: Default DataSource established
|
|
12
|
-
2023-05-25T00:27:20+09:00 info: Transaction DataSource established
|
|
13
|
-
2023-05-25T00:27:21+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
14
|
-
2023-05-25T00:27:21+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
15
|
-
2023-05-25T00:28:38+09:00 info: File Storage is Ready.
|
|
16
|
-
2023-05-25T00:28:39+09:00 error: oracledb module loading failed
|
|
17
|
-
2023-05-25T00:28:39+09:00 info: Default DataSource established
|
|
18
|
-
2023-05-25T00:28:39+09:00 info: Transaction DataSource established
|
|
19
|
-
2023-05-25T00:28:40+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
20
|
-
2023-05-25T00:28:40+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
2023-05-25T15:54:39+09:00 info: File Storage is Ready.
|
|
2
|
-
2023-05-25T15:54:40+09:00 error: oracledb module loading failed
|
|
3
|
-
2023-05-25T15:54:41+09:00 info: Default DataSource established
|
|
4
|
-
2023-05-25T15:54:41+09:00 info: Transaction DataSource established
|
|
5
|
-
2023-05-25T15:54:42+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
-
2023-05-25T15:54:42+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
2023-05-25T16:31:07+09:00 error: 스케쥴로 등록하기 위해서는 시나리오 'TEST'에 타임존 정보가 설정되어야 합니다.
|
|
2
|
-
2023-05-25T16:31:11+09:00 error: 스케쥴로 등록하기 위해서는 시나리오 'TEST'에 타임존 정보가 설정되어야 합니다.
|
|
3
|
-
2023-05-25T16:31:25+09:00 error: 스케쥴로 등록하기 위해서는 시나리오 'TEST'에 타임존 정보가 설정되어야 합니다.
|
|
4
|
-
2023-05-25T16:31:27+09:00 error: 스케쥴로 등록하기 위해서는 시나리오 'TEST'에 타임존 정보가 설정되어야 합니다.
|
|
5
|
-
2023-05-25T16:47:25+09:00 error: 스케쥴로 등록하기 위해서는 시나리오 'TEST'에 타임존 정보가 설정되어야 합니다.
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
2023-05-20T07:27:23+09:00 info: Initializing ConnectionManager...
|
|
2
|
-
2023-05-20T07:27:23+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
-
2023-05-20T07:27:23+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
-
2023-05-20T07:27:23+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
-
2023-05-20T07:27:23+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
-
2023-05-20T07:27:23+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
-
2023-05-20T07:27:23+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
-
2023-05-20T07:27:23+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
-
2023-05-20T07:27:23+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
-
2023-05-20T07:27:23+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
-
2023-05-20T07:27:23+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
-
2023-05-20T07:27:23+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
-
2023-05-20T07:27:23+09:00 info: Connector 'msgraph-connector' started to ready
|
|
14
|
-
2023-05-20T07:27:23+09:00 info: Connector 'openai-connector' started to ready
|
|
15
|
-
2023-05-20T07:27:23+09:00 info: echo-back-servers are ready
|
|
16
|
-
2023-05-20T07:27:23+09:00 info: echo-back connections are ready
|
|
17
|
-
2023-05-20T07:27:23+09:00 info: http-connector connections are ready
|
|
18
|
-
2023-05-20T07:27:23+09:00 info: graphql-connector connections are ready
|
|
19
|
-
2023-05-20T07:27:23+09:00 info: sqlite-connector connections are ready
|
|
20
|
-
2023-05-20T07:27:23+09:00 info: postgresql-connector connections are ready
|
|
21
|
-
2023-05-20T07:27:23+09:00 info: mqtt-connector connections are ready
|
|
22
|
-
2023-05-20T07:27:23+09:00 info: mssql-connector connections are ready
|
|
23
|
-
2023-05-20T07:27:23+09:00 info: oracle-connector connections are ready
|
|
24
|
-
2023-05-20T07:27:23+09:00 info: mysql-connector connections are ready
|
|
25
|
-
2023-05-20T07:27:23+09:00 info: socket servers are ready
|
|
26
|
-
2023-05-20T07:27:23+09:00 info: msgraph-connector connections are ready
|
|
27
|
-
2023-05-20T07:27:23+09:00 info: openai-connector connections are ready
|
|
28
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'echo-back-server' ready
|
|
29
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'echo-back' ready
|
|
30
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'http-connector' ready
|
|
31
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'graphql-connector' ready
|
|
32
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'sqlite-connector' ready
|
|
33
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'postgresql-connector' ready
|
|
34
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'mqtt-connector' ready
|
|
35
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'mssql-connector' ready
|
|
36
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'oracle-connector' ready
|
|
37
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'mysql-connector' ready
|
|
38
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'socket-server' ready
|
|
39
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'msgraph-connector' ready
|
|
40
|
-
2023-05-20T07:27:23+09:00 info: All connector for 'openai-connector' ready
|
|
41
|
-
2023-05-20T07:27:23+09:00 info: ConnectionManager initialization done:
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
2023-05-23T21:42:14+09:00 info: Initializing ConnectionManager...
|
|
2
|
-
2023-05-23T21:42:14+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
-
2023-05-23T21:42:14+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
-
2023-05-23T21:42:14+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
-
2023-05-23T21:42:14+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
-
2023-05-23T21:42:14+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
-
2023-05-23T21:42:14+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
-
2023-05-23T21:42:14+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
-
2023-05-23T21:42:14+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
-
2023-05-23T21:42:14+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
-
2023-05-23T21:42:14+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
-
2023-05-23T21:42:14+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
-
2023-05-23T21:42:14+09:00 info: Connector 'msgraph-connector' started to ready
|
|
14
|
-
2023-05-23T21:42:14+09:00 info: Connector 'openai-connector' started to ready
|
|
15
|
-
2023-05-23T21:42:14+09:00 info: echo-back-servers are ready
|
|
16
|
-
2023-05-23T21:42:14+09:00 info: echo-back connections are ready
|
|
17
|
-
2023-05-23T21:42:14+09:00 info: http-connector connections are ready
|
|
18
|
-
2023-05-23T21:42:14+09:00 info: graphql-connector connections are ready
|
|
19
|
-
2023-05-23T21:42:14+09:00 info: sqlite-connector connections are ready
|
|
20
|
-
2023-05-23T21:42:14+09:00 info: postgresql-connector connections are ready
|
|
21
|
-
2023-05-23T21:42:14+09:00 info: mqtt-connector connections are ready
|
|
22
|
-
2023-05-23T21:42:14+09:00 info: mssql-connector connections are ready
|
|
23
|
-
2023-05-23T21:42:14+09:00 info: oracle-connector connections are ready
|
|
24
|
-
2023-05-23T21:42:14+09:00 info: mysql-connector connections are ready
|
|
25
|
-
2023-05-23T21:42:14+09:00 info: socket servers are ready
|
|
26
|
-
2023-05-23T21:42:14+09:00 info: msgraph-connector connections are ready
|
|
27
|
-
2023-05-23T21:42:14+09:00 info: openai-connector connections are ready
|
|
28
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'echo-back-server' ready
|
|
29
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'echo-back' ready
|
|
30
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'http-connector' ready
|
|
31
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'graphql-connector' ready
|
|
32
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'sqlite-connector' ready
|
|
33
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'postgresql-connector' ready
|
|
34
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'mqtt-connector' ready
|
|
35
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'mssql-connector' ready
|
|
36
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'oracle-connector' ready
|
|
37
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'mysql-connector' ready
|
|
38
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'socket-server' ready
|
|
39
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'msgraph-connector' ready
|
|
40
|
-
2023-05-23T21:42:14+09:00 info: All connector for 'openai-connector' ready
|
|
41
|
-
2023-05-23T21:42:14+09:00 info: ConnectionManager initialization done:
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
2023-05-24T21:23:43+09:00 info: Initializing ConnectionManager...
|
|
2
|
-
2023-05-24T21:23:43+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
-
2023-05-24T21:23:43+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
-
2023-05-24T21:23:43+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
-
2023-05-24T21:23:43+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
-
2023-05-24T21:23:43+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
-
2023-05-24T21:23:43+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
-
2023-05-24T21:23:43+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
-
2023-05-24T21:23:43+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
-
2023-05-24T21:23:43+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
-
2023-05-24T21:23:43+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
-
2023-05-24T21:23:43+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
-
2023-05-24T21:23:43+09:00 info: Connector 'msgraph-connector' started to ready
|
|
14
|
-
2023-05-24T21:23:43+09:00 info: Connector 'openai-connector' started to ready
|
|
15
|
-
2023-05-24T21:23:43+09:00 info: echo-back-servers are ready
|
|
16
|
-
2023-05-24T21:23:43+09:00 info: echo-back connections are ready
|
|
17
|
-
2023-05-24T21:23:43+09:00 info: http-connector connections are ready
|
|
18
|
-
2023-05-24T21:23:43+09:00 info: graphql-connector connections are ready
|
|
19
|
-
2023-05-24T21:23:43+09:00 info: sqlite-connector connections are ready
|
|
20
|
-
2023-05-24T21:23:43+09:00 info: postgresql-connector connections are ready
|
|
21
|
-
2023-05-24T21:23:43+09:00 info: mqtt-connector connections are ready
|
|
22
|
-
2023-05-24T21:23:43+09:00 info: mssql-connector connections are ready
|
|
23
|
-
2023-05-24T21:23:43+09:00 info: oracle-connector connections are ready
|
|
24
|
-
2023-05-24T21:23:43+09:00 info: mysql-connector connections are ready
|
|
25
|
-
2023-05-24T21:23:43+09:00 info: socket servers are ready
|
|
26
|
-
2023-05-24T21:23:43+09:00 info: msgraph-connector connections are ready
|
|
27
|
-
2023-05-24T21:23:43+09:00 info: openai-connector connections are ready
|
|
28
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'echo-back-server' ready
|
|
29
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'echo-back' ready
|
|
30
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'http-connector' ready
|
|
31
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'graphql-connector' ready
|
|
32
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'sqlite-connector' ready
|
|
33
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'postgresql-connector' ready
|
|
34
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'mqtt-connector' ready
|
|
35
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'mssql-connector' ready
|
|
36
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'oracle-connector' ready
|
|
37
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'mysql-connector' ready
|
|
38
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'socket-server' ready
|
|
39
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'msgraph-connector' ready
|
|
40
|
-
2023-05-24T21:23:43+09:00 info: All connector for 'openai-connector' ready
|
|
41
|
-
2023-05-24T21:23:43+09:00 info: ConnectionManager initialization done:
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
2023-05-25T00:03:32+09:00 info: Initializing ConnectionManager...
|
|
2
|
-
2023-05-25T00:03:32+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
-
2023-05-25T00:03:32+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
-
2023-05-25T00:03:32+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
-
2023-05-25T00:03:32+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
-
2023-05-25T00:03:32+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
-
2023-05-25T00:03:32+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
-
2023-05-25T00:03:32+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
-
2023-05-25T00:03:32+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
-
2023-05-25T00:03:32+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
-
2023-05-25T00:03:32+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
-
2023-05-25T00:03:32+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
-
2023-05-25T00:03:32+09:00 info: Connector 'msgraph-connector' started to ready
|
|
14
|
-
2023-05-25T00:03:32+09:00 info: Connector 'openai-connector' started to ready
|
|
15
|
-
2023-05-25T00:03:32+09:00 info: echo-back-servers are ready
|
|
16
|
-
2023-05-25T00:03:32+09:00 info: echo-back connections are ready
|
|
17
|
-
2023-05-25T00:03:32+09:00 info: http-connector connections are ready
|
|
18
|
-
2023-05-25T00:03:32+09:00 info: graphql-connector connections are ready
|
|
19
|
-
2023-05-25T00:03:32+09:00 info: sqlite-connector connections are ready
|
|
20
|
-
2023-05-25T00:03:32+09:00 info: postgresql-connector connections are ready
|
|
21
|
-
2023-05-25T00:03:32+09:00 info: mqtt-connector connections are ready
|
|
22
|
-
2023-05-25T00:03:32+09:00 info: mssql-connector connections are ready
|
|
23
|
-
2023-05-25T00:03:32+09:00 info: oracle-connector connections are ready
|
|
24
|
-
2023-05-25T00:03:32+09:00 info: mysql-connector connections are ready
|
|
25
|
-
2023-05-25T00:03:32+09:00 info: socket servers are ready
|
|
26
|
-
2023-05-25T00:03:32+09:00 info: msgraph-connector connections are ready
|
|
27
|
-
2023-05-25T00:03:32+09:00 info: openai-connector connections are ready
|
|
28
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'echo-back-server' ready
|
|
29
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'echo-back' ready
|
|
30
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'http-connector' ready
|
|
31
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'graphql-connector' ready
|
|
32
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'sqlite-connector' ready
|
|
33
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'postgresql-connector' ready
|
|
34
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'mqtt-connector' ready
|
|
35
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'mssql-connector' ready
|
|
36
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'oracle-connector' ready
|
|
37
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'mysql-connector' ready
|
|
38
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'socket-server' ready
|
|
39
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'msgraph-connector' ready
|
|
40
|
-
2023-05-25T00:03:32+09:00 info: All connector for 'openai-connector' ready
|
|
41
|
-
2023-05-25T00:03:32+09:00 info: ConnectionManager initialization done:
|
|
42
|
-
2023-05-25T00:27:21+09:00 info: Initializing ConnectionManager...
|
|
43
|
-
2023-05-25T00:27:21+09:00 info: Connector 'echo-back-server' started to ready
|
|
44
|
-
2023-05-25T00:27:21+09:00 info: Connector 'echo-back' started to ready
|
|
45
|
-
2023-05-25T00:27:21+09:00 info: Connector 'http-connector' started to ready
|
|
46
|
-
2023-05-25T00:27:21+09:00 info: Connector 'graphql-connector' started to ready
|
|
47
|
-
2023-05-25T00:27:21+09:00 info: Connector 'sqlite-connector' started to ready
|
|
48
|
-
2023-05-25T00:27:21+09:00 info: Connector 'postgresql-connector' started to ready
|
|
49
|
-
2023-05-25T00:27:21+09:00 info: Connector 'mqtt-connector' started to ready
|
|
50
|
-
2023-05-25T00:27:21+09:00 info: Connector 'mssql-connector' started to ready
|
|
51
|
-
2023-05-25T00:27:21+09:00 info: Connector 'oracle-connector' started to ready
|
|
52
|
-
2023-05-25T00:27:21+09:00 info: Connector 'mysql-connector' started to ready
|
|
53
|
-
2023-05-25T00:27:21+09:00 info: Connector 'socket-server' started to ready
|
|
54
|
-
2023-05-25T00:27:21+09:00 info: Connector 'msgraph-connector' started to ready
|
|
55
|
-
2023-05-25T00:27:21+09:00 info: Connector 'openai-connector' started to ready
|
|
56
|
-
2023-05-25T00:27:21+09:00 info: echo-back-servers are ready
|
|
57
|
-
2023-05-25T00:27:21+09:00 info: echo-back connections are ready
|
|
58
|
-
2023-05-25T00:27:21+09:00 info: http-connector connections are ready
|
|
59
|
-
2023-05-25T00:27:21+09:00 info: graphql-connector connections are ready
|
|
60
|
-
2023-05-25T00:27:21+09:00 info: sqlite-connector connections are ready
|
|
61
|
-
2023-05-25T00:27:21+09:00 info: postgresql-connector connections are ready
|
|
62
|
-
2023-05-25T00:27:21+09:00 info: mqtt-connector connections are ready
|
|
63
|
-
2023-05-25T00:27:21+09:00 info: mssql-connector connections are ready
|
|
64
|
-
2023-05-25T00:27:21+09:00 info: oracle-connector connections are ready
|
|
65
|
-
2023-05-25T00:27:21+09:00 info: mysql-connector connections are ready
|
|
66
|
-
2023-05-25T00:27:21+09:00 info: socket servers are ready
|
|
67
|
-
2023-05-25T00:27:21+09:00 info: msgraph-connector connections are ready
|
|
68
|
-
2023-05-25T00:27:21+09:00 info: openai-connector connections are ready
|
|
69
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'echo-back-server' ready
|
|
70
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'echo-back' ready
|
|
71
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'http-connector' ready
|
|
72
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'graphql-connector' ready
|
|
73
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'sqlite-connector' ready
|
|
74
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'postgresql-connector' ready
|
|
75
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'mqtt-connector' ready
|
|
76
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'mssql-connector' ready
|
|
77
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'oracle-connector' ready
|
|
78
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'mysql-connector' ready
|
|
79
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'socket-server' ready
|
|
80
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'msgraph-connector' ready
|
|
81
|
-
2023-05-25T00:27:21+09:00 info: All connector for 'openai-connector' ready
|
|
82
|
-
2023-05-25T00:27:21+09:00 info: ConnectionManager initialization done:
|
|
83
|
-
2023-05-25T00:28:40+09:00 info: Initializing ConnectionManager...
|
|
84
|
-
2023-05-25T00:28:40+09:00 info: Connector 'echo-back-server' started to ready
|
|
85
|
-
2023-05-25T00:28:40+09:00 info: Connector 'echo-back' started to ready
|
|
86
|
-
2023-05-25T00:28:40+09:00 info: Connector 'http-connector' started to ready
|
|
87
|
-
2023-05-25T00:28:40+09:00 info: Connector 'graphql-connector' started to ready
|
|
88
|
-
2023-05-25T00:28:40+09:00 info: Connector 'sqlite-connector' started to ready
|
|
89
|
-
2023-05-25T00:28:40+09:00 info: Connector 'postgresql-connector' started to ready
|
|
90
|
-
2023-05-25T00:28:40+09:00 info: Connector 'mqtt-connector' started to ready
|
|
91
|
-
2023-05-25T00:28:40+09:00 info: Connector 'mssql-connector' started to ready
|
|
92
|
-
2023-05-25T00:28:40+09:00 info: Connector 'oracle-connector' started to ready
|
|
93
|
-
2023-05-25T00:28:40+09:00 info: Connector 'mysql-connector' started to ready
|
|
94
|
-
2023-05-25T00:28:40+09:00 info: Connector 'socket-server' started to ready
|
|
95
|
-
2023-05-25T00:28:40+09:00 info: Connector 'msgraph-connector' started to ready
|
|
96
|
-
2023-05-25T00:28:40+09:00 info: Connector 'openai-connector' started to ready
|
|
97
|
-
2023-05-25T00:28:40+09:00 info: echo-back-servers are ready
|
|
98
|
-
2023-05-25T00:28:40+09:00 info: echo-back connections are ready
|
|
99
|
-
2023-05-25T00:28:40+09:00 info: http-connector connections are ready
|
|
100
|
-
2023-05-25T00:28:40+09:00 info: graphql-connector connections are ready
|
|
101
|
-
2023-05-25T00:28:40+09:00 info: sqlite-connector connections are ready
|
|
102
|
-
2023-05-25T00:28:40+09:00 info: postgresql-connector connections are ready
|
|
103
|
-
2023-05-25T00:28:40+09:00 info: mqtt-connector connections are ready
|
|
104
|
-
2023-05-25T00:28:40+09:00 info: mssql-connector connections are ready
|
|
105
|
-
2023-05-25T00:28:40+09:00 info: oracle-connector connections are ready
|
|
106
|
-
2023-05-25T00:28:40+09:00 info: mysql-connector connections are ready
|
|
107
|
-
2023-05-25T00:28:40+09:00 info: socket servers are ready
|
|
108
|
-
2023-05-25T00:28:40+09:00 info: msgraph-connector connections are ready
|
|
109
|
-
2023-05-25T00:28:40+09:00 info: openai-connector connections are ready
|
|
110
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'echo-back-server' ready
|
|
111
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'echo-back' ready
|
|
112
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'http-connector' ready
|
|
113
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'graphql-connector' ready
|
|
114
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'sqlite-connector' ready
|
|
115
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'postgresql-connector' ready
|
|
116
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'mqtt-connector' ready
|
|
117
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'mssql-connector' ready
|
|
118
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'oracle-connector' ready
|
|
119
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'mysql-connector' ready
|
|
120
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'socket-server' ready
|
|
121
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'msgraph-connector' ready
|
|
122
|
-
2023-05-25T00:28:40+09:00 info: All connector for 'openai-connector' ready
|
|
123
|
-
2023-05-25T00:28:40+09:00 info: ConnectionManager initialization done:
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
2023-05-25T15:54:42+09:00 info: Initializing ConnectionManager...
|
|
2
|
-
2023-05-25T15:54:42+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
-
2023-05-25T15:54:42+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
-
2023-05-25T15:54:42+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
-
2023-05-25T15:54:42+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
-
2023-05-25T15:54:42+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
-
2023-05-25T15:54:42+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
-
2023-05-25T15:54:42+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
-
2023-05-25T15:54:42+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
-
2023-05-25T15:54:42+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
-
2023-05-25T15:54:42+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
-
2023-05-25T15:54:42+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
-
2023-05-25T15:54:42+09:00 info: Connector 'msgraph-connector' started to ready
|
|
14
|
-
2023-05-25T15:54:42+09:00 info: Connector 'openai-connector' started to ready
|
|
15
|
-
2023-05-25T15:54:42+09:00 info: echo-back-servers are ready
|
|
16
|
-
2023-05-25T15:54:42+09:00 info: echo-back connections are ready
|
|
17
|
-
2023-05-25T15:54:42+09:00 info: http-connector connections are ready
|
|
18
|
-
2023-05-25T15:54:42+09:00 info: graphql-connector connections are ready
|
|
19
|
-
2023-05-25T15:54:42+09:00 info: sqlite-connector connections are ready
|
|
20
|
-
2023-05-25T15:54:42+09:00 info: postgresql-connector connections are ready
|
|
21
|
-
2023-05-25T15:54:42+09:00 info: mqtt-connector connections are ready
|
|
22
|
-
2023-05-25T15:54:42+09:00 info: mssql-connector connections are ready
|
|
23
|
-
2023-05-25T15:54:42+09:00 info: oracle-connector connections are ready
|
|
24
|
-
2023-05-25T15:54:42+09:00 info: mysql-connector connections are ready
|
|
25
|
-
2023-05-25T15:54:42+09:00 info: socket servers are ready
|
|
26
|
-
2023-05-25T15:54:42+09:00 info: msgraph-connector connections are ready
|
|
27
|
-
2023-05-25T15:54:42+09:00 info: openai-connector connections are ready
|
|
28
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'echo-back-server' ready
|
|
29
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'echo-back' ready
|
|
30
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'http-connector' ready
|
|
31
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'graphql-connector' ready
|
|
32
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'sqlite-connector' ready
|
|
33
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'postgresql-connector' ready
|
|
34
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'mqtt-connector' ready
|
|
35
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'mssql-connector' ready
|
|
36
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'oracle-connector' ready
|
|
37
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'mysql-connector' ready
|
|
38
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'socket-server' ready
|
|
39
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'msgraph-connector' ready
|
|
40
|
-
2023-05-25T15:54:42+09:00 info: All connector for 'openai-connector' ready
|
|
41
|
-
2023-05-25T15:54:42+09:00 info: ConnectionManager initialization done:
|