@operato/scene-scichart 2.0.0-beta.0
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 +19 -0
- package/README.md +13 -0
- package/assets/favicon.ico +0 -0
- package/assets/images/spinner.png +0 -0
- package/db.sqlite +0 -0
- package/dist/charts/sci-candle-stick-chart.d.ts +19 -0
- package/dist/charts/sci-candle-stick-chart.js +248 -0
- package/dist/charts/sci-candle-stick-chart.js.map +1 -0
- package/dist/charts/volume-pallette-provider.d.ts +12 -0
- package/dist/charts/volume-pallette-provider.js +21 -0
- package/dist/charts/volume-pallette-provider.js.map +1 -0
- package/dist/data/binance-rest-client.d.ts +14 -0
- package/dist/data/binance-rest-client.js +53 -0
- package/dist/data/binance-rest-client.js.map +1 -0
- package/dist/editors/index.d.ts +0 -0
- package/dist/editors/index.js +2 -0
- package/dist/editors/index.js.map +1 -0
- package/dist/groups/index.d.ts +0 -0
- package/dist/groups/index.js +2 -0
- package/dist/groups/index.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/scichart-candle-stick.d.ts +10 -0
- package/dist/scichart-candle-stick.js +50 -0
- package/dist/scichart-candle-stick.js.map +1 -0
- package/dist/scichart-timeseries.d.ts +23 -0
- package/dist/scichart-timeseries.js +118 -0
- package/dist/scichart-timeseries.js.map +1 -0
- package/dist/scichart.d.ts +20 -0
- package/dist/scichart.js +70 -0
- package/dist/scichart.js.map +1 -0
- package/dist/templates/index.d.ts +14 -0
- package/dist/templates/index.js +4 -0
- package/dist/templates/index.js.map +1 -0
- package/dist/templates/scichart-candle-stick.d.ts +14 -0
- package/dist/templates/scichart-candle-stick.js +16 -0
- package/dist/templates/scichart-candle-stick.js.map +1 -0
- package/dist/templates/scichart.d.ts +14 -0
- package/dist/templates/scichart.js +16 -0
- package/dist/templates/scichart.js.map +1 -0
- package/dist/themes/app-theme.d.ts +56 -0
- package/dist/themes/app-theme.js +35 -0
- package/dist/themes/app-theme.js.map +1 -0
- package/icons/no-image.png +0 -0
- package/icons/scichart-candle-stick.png +0 -0
- package/icons/scichart.png +0 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +25 -0
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +30 -0
- package/logs/application-2024-03-15-04.log +28 -0
- package/logs/application-2024-03-17-03.log +12 -0
- package/logs/application-2024-03-17-04.log +6 -0
- package/logs/connections-2024-03-15-03.log +82 -0
- package/logs/connections-2024-03-15-04.log +164 -0
- package/logs/connections-2024-03-17-03.log +88 -0
- package/logs/connections-2024-03-17-04.log +44 -0
- package/package.json +62 -0
- package/schema.graphql +3969 -0
- package/src/charts/sci-candle-stick-chart.ts +305 -0
- package/src/charts/volume-pallette-provider.ts +41 -0
- package/src/data/binance-rest-client.ts +74 -0
- package/src/editors/index.ts +0 -0
- package/src/groups/index.ts +0 -0
- package/src/index.ts +2 -0
- package/src/scichart-candle-stick.ts +60 -0
- package/src/scichart-timeseries.ts +156 -0
- package/src/scichart.ts +88 -0
- package/src/templates/index.ts +4 -0
- package/src/templates/scichart-candle-stick.ts +16 -0
- package/src/templates/scichart.ts +16 -0
- package/src/themes/app-theme.ts +72 -0
- package/things-scene.config.js +9 -0
- package/translations/en.json +3 -0
- package/translations/ja.json +3 -0
- package/translations/ko.json +3 -0
- package/translations/ms.json +3 -0
- package/translations/zh.json +3 -0
- package/tsconfig.json +22 -0
- package/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,118 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright © HatioLab Inc. All rights reserved.
|
3
|
+
*/
|
4
|
+
const NATURE = {
|
5
|
+
mutable: false,
|
6
|
+
resizable: true,
|
7
|
+
rotatable: true,
|
8
|
+
properties: [
|
9
|
+
{
|
10
|
+
type: 'number',
|
11
|
+
label: 'sample-count',
|
12
|
+
name: 'sampleCount'
|
13
|
+
},
|
14
|
+
{
|
15
|
+
type: 'number',
|
16
|
+
label: 'max-value',
|
17
|
+
name: 'maxValue'
|
18
|
+
},
|
19
|
+
{
|
20
|
+
type: 'string',
|
21
|
+
label: 'attr-x',
|
22
|
+
name: 'attrX'
|
23
|
+
},
|
24
|
+
{
|
25
|
+
type: 'string',
|
26
|
+
label: 'attr-y',
|
27
|
+
name: 'attrY'
|
28
|
+
}
|
29
|
+
]
|
30
|
+
};
|
31
|
+
import { Component, HTMLOverlayContainer } from '@hatiolab/things-scene';
|
32
|
+
import { MouseWheelZoomModifier, FastLineRenderableSeries, XyDataSeries, ZoomExtentsModifier, ZoomPanModifier, NumberRange, EAxisAlignment, EAutoRange } from 'scichart';
|
33
|
+
import { SciChartSurface } from 'scichart/Charting/Visuals/SciChartSurface';
|
34
|
+
import { NumericAxis } from 'scichart/Charting/Visuals/Axis/NumericAxis';
|
35
|
+
SciChartSurface.configure({
|
36
|
+
dataUrl: `/node_modules/scichart/_wasm/scichart2d.data`,
|
37
|
+
wasmUrl: `/node_modules/scichart/_wasm/scichart2d.wasm`
|
38
|
+
});
|
39
|
+
export default class ScichartTimeSeries extends HTMLOverlayContainer {
|
40
|
+
static get nature() {
|
41
|
+
return NATURE;
|
42
|
+
}
|
43
|
+
async oncreate_element(div) {
|
44
|
+
const { sciChartSurface, wasmContext } = await SciChartSurface.create(div);
|
45
|
+
var { sampleCount, maxValue } = this.state;
|
46
|
+
// SciChartSurface.setRuntimeLicenseKey('YOUR_RUNTIME_KEY')
|
47
|
+
const xAxis = new NumericAxis(wasmContext, {
|
48
|
+
axisTitle: 'X Axis',
|
49
|
+
autoRange: EAutoRange.Never,
|
50
|
+
axisAlignment: EAxisAlignment.Bottom,
|
51
|
+
visibleRange: new NumberRange(0, sampleCount)
|
52
|
+
});
|
53
|
+
const yAxis = new NumericAxis(wasmContext, {
|
54
|
+
axisTitle: 'Y Axis',
|
55
|
+
autoRange: EAutoRange.Never,
|
56
|
+
visibleRange: new NumberRange(0, maxValue)
|
57
|
+
});
|
58
|
+
sciChartSurface.xAxes.add(xAxis);
|
59
|
+
sciChartSurface.yAxes.add(yAxis);
|
60
|
+
const dataSeries = new XyDataSeries(wasmContext, {
|
61
|
+
xValues: this.dataSet.map(d => d.xValue),
|
62
|
+
yValues: this.dataSet.map(d => d.yValue)
|
63
|
+
});
|
64
|
+
const lineSeries = new FastLineRenderableSeries(wasmContext, {
|
65
|
+
dataSeries: dataSeries,
|
66
|
+
xAxisId: sciChartSurface.xAxes.get(0).id,
|
67
|
+
yAxisId: sciChartSurface.yAxes.get(0).id,
|
68
|
+
stroke: '#FF6600',
|
69
|
+
strokeThickness: 2
|
70
|
+
});
|
71
|
+
sciChartSurface.renderableSeries.add(lineSeries);
|
72
|
+
// ZoomPanModifier, MouseWheelZoomModifier, ZoomExtentsModifier 추가
|
73
|
+
// ZoomPanModifier: Chart를 드래그하여 이동
|
74
|
+
// MouseWheelZoomModifier: 마우스 휠로 Chart Zoom
|
75
|
+
// ZoomExtentsModifier: Chart의 전체 범위로 Zoom
|
76
|
+
sciChartSurface.chartModifiers.add(new ZoomPanModifier({ enableZoom: true }), new MouseWheelZoomModifier(), new ZoomExtentsModifier());
|
77
|
+
}
|
78
|
+
dispose() {
|
79
|
+
super.dispose();
|
80
|
+
delete this._anchor;
|
81
|
+
}
|
82
|
+
/*
|
83
|
+
* 컴포넌트의 생성 또는 속성 변화 시에 호출되며,
|
84
|
+
* 그에 따른 html element의 반영이 필요한 부분을 구현한다.
|
85
|
+
*
|
86
|
+
* ThingsComponent state => HTML element properties
|
87
|
+
*/
|
88
|
+
setElementProperties(div) { }
|
89
|
+
/*
|
90
|
+
* 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.
|
91
|
+
* 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.
|
92
|
+
*/
|
93
|
+
reposition() {
|
94
|
+
super.reposition();
|
95
|
+
}
|
96
|
+
get dataSet() {
|
97
|
+
var { attrX, attrY, data } = this.state;
|
98
|
+
if (!(data instanceof Array)) {
|
99
|
+
return [];
|
100
|
+
}
|
101
|
+
return data
|
102
|
+
.map(item => {
|
103
|
+
if (!item || typeof item !== 'object') {
|
104
|
+
return;
|
105
|
+
}
|
106
|
+
return {
|
107
|
+
xValue: item[attrX],
|
108
|
+
yValue: item[attrY]
|
109
|
+
};
|
110
|
+
})
|
111
|
+
.filter(Boolean);
|
112
|
+
}
|
113
|
+
get tagName() {
|
114
|
+
return 'div';
|
115
|
+
}
|
116
|
+
}
|
117
|
+
Component.register('scichart-timeseries', ScichartTimeSeries);
|
118
|
+
//# sourceMappingURL=scichart-timeseries.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"scichart-timeseries.js","sourceRoot":"","sources":["../src/scichart-timeseries.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'number',\n label: 'sample-count',\n name: 'sampleCount'\n },\n {\n type: 'number',\n label: 'max-value',\n name: 'maxValue'\n },\n {\n type: 'string',\n label: 'attr-x',\n name: 'attrX'\n },\n {\n type: 'string',\n label: 'attr-y',\n name: 'attrY'\n }\n ]\n}\n\nimport { Component, HTMLOverlayContainer, Properties, ComponentNature, error } from '@hatiolab/things-scene'\n\nimport {\n MouseWheelZoomModifier,\n FastLineRenderableSeries,\n XyDataSeries,\n ZoomExtentsModifier,\n ZoomPanModifier,\n NumberRange,\n EAxisAlignment,\n EAutoRange\n} from 'scichart'\n\nimport { SciChartSurface } from 'scichart/Charting/Visuals/SciChartSurface'\nimport { NumericAxis } from 'scichart/Charting/Visuals/Axis/NumericAxis'\n\nSciChartSurface.configure({\n dataUrl: `/node_modules/scichart/_wasm/scichart2d.data`,\n wasmUrl: `/node_modules/scichart/_wasm/scichart2d.wasm`\n})\n\nexport default class ScichartTimeSeries extends HTMLOverlayContainer {\n static get nature() {\n return NATURE\n }\n\n _anchor?: HTMLDivElement\n\n async oncreate_element(div: HTMLDivElement) {\n const { sciChartSurface, wasmContext } = await SciChartSurface.create(div)\n var { sampleCount, maxValue } = this.state\n\n // SciChartSurface.setRuntimeLicenseKey('YOUR_RUNTIME_KEY')\n\n const xAxis = new NumericAxis(wasmContext, {\n axisTitle: 'X Axis',\n autoRange: EAutoRange.Never,\n axisAlignment: EAxisAlignment.Bottom,\n visibleRange: new NumberRange(0, sampleCount)\n })\n const yAxis = new NumericAxis(wasmContext, {\n axisTitle: 'Y Axis',\n autoRange: EAutoRange.Never,\n visibleRange: new NumberRange(0, maxValue)\n })\n\n sciChartSurface.xAxes.add(xAxis)\n sciChartSurface.yAxes.add(yAxis)\n\n const dataSeries = new XyDataSeries(wasmContext, {\n xValues: this.dataSet.map(d => d.xValue),\n yValues: this.dataSet.map(d => d.yValue)\n })\n\n const lineSeries = new FastLineRenderableSeries(wasmContext, {\n dataSeries: dataSeries,\n xAxisId: sciChartSurface.xAxes.get(0).id,\n yAxisId: sciChartSurface.yAxes.get(0).id,\n stroke: '#FF6600',\n strokeThickness: 2\n })\n\n sciChartSurface.renderableSeries.add(lineSeries)\n\n // ZoomPanModifier, MouseWheelZoomModifier, ZoomExtentsModifier 추가\n // ZoomPanModifier: Chart를 드래그하여 이동\n // MouseWheelZoomModifier: 마우스 휠로 Chart Zoom\n // ZoomExtentsModifier: Chart의 전체 범위로 Zoom\n sciChartSurface.chartModifiers.add(\n new ZoomPanModifier({ enableZoom: true }),\n new MouseWheelZoomModifier(),\n new ZoomExtentsModifier()\n )\n }\n\n dispose() {\n super.dispose()\n\n delete this._anchor\n }\n\n /*\n * 컴포넌트의 생성 또는 속성 변화 시에 호출되며,\n * 그에 따른 html element의 반영이 필요한 부분을 구현한다.\n *\n * ThingsComponent state => HTML element properties\n */\n setElementProperties(div: HTMLDivElement) {}\n\n /*\n * 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.\n * 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.\n */\n reposition() {\n super.reposition()\n }\n\n get dataSet(): { xValue: number; yValue: number }[] {\n var { attrX, attrY, data } = this.state\n\n if (!(data instanceof Array)) {\n return []\n }\n\n return data\n .map(item => {\n if (!item || typeof item !== 'object') {\n return\n }\n\n return {\n xValue: item[attrX],\n yValue: item[attrY]\n }\n })\n .filter(Boolean) as { xValue: number; yValue: number }[]\n }\n\n get tagName() {\n return 'div'\n }\n}\n\nComponent.register('scichart-timeseries', ScichartTimeSeries)\n"]}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { HTMLOverlayContainer } from '@hatiolab/things-scene';
|
2
|
+
export default class Scichart extends HTMLOverlayContainer {
|
3
|
+
static get nature(): {
|
4
|
+
mutable: boolean;
|
5
|
+
resizable: boolean;
|
6
|
+
rotatable: boolean;
|
7
|
+
properties: {
|
8
|
+
type: string;
|
9
|
+
label: string;
|
10
|
+
name: string;
|
11
|
+
}[];
|
12
|
+
};
|
13
|
+
_anchor?: HTMLDivElement;
|
14
|
+
oncreate_element(div: HTMLDivElement): Promise<void>;
|
15
|
+
dispose(): void;
|
16
|
+
setElementProperties(div: HTMLDivElement): void;
|
17
|
+
reposition(): void;
|
18
|
+
get config(): any;
|
19
|
+
get tagName(): string;
|
20
|
+
}
|
package/dist/scichart.js
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright © HatioLab Inc. All rights reserved.
|
3
|
+
*/
|
4
|
+
const NATURE = {
|
5
|
+
mutable: false,
|
6
|
+
resizable: true,
|
7
|
+
rotatable: true,
|
8
|
+
properties: [
|
9
|
+
{
|
10
|
+
type: 'textarea',
|
11
|
+
label: 'config',
|
12
|
+
name: 'config'
|
13
|
+
}
|
14
|
+
]
|
15
|
+
};
|
16
|
+
import { Component, HTMLOverlayContainer, error } from '@hatiolab/things-scene';
|
17
|
+
import { SciChartSurface } from 'scichart/Charting/Visuals/SciChartSurface';
|
18
|
+
import { NumericAxis } from 'scichart/Charting/Visuals/Axis/NumericAxis';
|
19
|
+
SciChartSurface.configure({
|
20
|
+
dataUrl: `/node_modules/scichart/_wasm/scichart2d.data`,
|
21
|
+
wasmUrl: `/node_modules/scichart/_wasm/scichart2d.wasm`
|
22
|
+
});
|
23
|
+
export default class Scichart extends HTMLOverlayContainer {
|
24
|
+
static get nature() {
|
25
|
+
return NATURE;
|
26
|
+
}
|
27
|
+
async oncreate_element(div) {
|
28
|
+
const { sciChartSurface, wasmContext } = await SciChartSurface.create(div);
|
29
|
+
// SciChartSurface.setRuntimeLicenseKey('YOUR_RUNTIME_KEY')
|
30
|
+
const xAxis = new NumericAxis(wasmContext);
|
31
|
+
const yAxis = new NumericAxis(wasmContext);
|
32
|
+
sciChartSurface.xAxes.add(xAxis);
|
33
|
+
sciChartSurface.yAxes.add(yAxis);
|
34
|
+
}
|
35
|
+
dispose() {
|
36
|
+
super.dispose();
|
37
|
+
delete this._anchor;
|
38
|
+
}
|
39
|
+
/*
|
40
|
+
* 컴포넌트의 생성 또는 속성 변화 시에 호출되며,
|
41
|
+
* 그에 따른 html element의 반영이 필요한 부분을 구현한다.
|
42
|
+
*
|
43
|
+
* ThingsComponent state => HTML element properties
|
44
|
+
*/
|
45
|
+
setElementProperties(div) { }
|
46
|
+
/*
|
47
|
+
* 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.
|
48
|
+
* 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.
|
49
|
+
*/
|
50
|
+
reposition() {
|
51
|
+
super.reposition();
|
52
|
+
}
|
53
|
+
get config() {
|
54
|
+
var { config, data } = this.state;
|
55
|
+
if (typeof config !== 'object') {
|
56
|
+
try {
|
57
|
+
eval(`config = ${config}`);
|
58
|
+
}
|
59
|
+
catch (e) {
|
60
|
+
error(e);
|
61
|
+
}
|
62
|
+
}
|
63
|
+
return config;
|
64
|
+
}
|
65
|
+
get tagName() {
|
66
|
+
return 'div';
|
67
|
+
}
|
68
|
+
}
|
69
|
+
Component.register('scichart', Scichart);
|
70
|
+
//# sourceMappingURL=scichart.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"scichart.js","sourceRoot":"","sources":["../src/scichart.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,MAAM,GAAG;IACb,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;IACf,UAAU,EAAE;QACV;YACE,IAAI,EAAE,UAAU;YAChB,KAAK,EAAE,QAAQ;YACf,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAA;AAED,OAAO,EAAE,SAAS,EAAE,oBAAoB,EAA+B,KAAK,EAAE,MAAM,wBAAwB,CAAA;AAE5G,OAAO,EAAE,eAAe,EAAE,MAAM,2CAA2C,CAAA;AAC3E,OAAO,EAAE,WAAW,EAAE,MAAM,4CAA4C,CAAA;AAExE,eAAe,CAAC,SAAS,CAAC;IACxB,OAAO,EAAE,8CAA8C;IACvD,OAAO,EAAE,8CAA8C;CACxD,CAAC,CAAA;AAEF,MAAM,CAAC,OAAO,OAAO,QAAS,SAAQ,oBAAoB;IACxD,MAAM,KAAK,MAAM;QACf,OAAO,MAAM,CAAA;IACf,CAAC;IAID,KAAK,CAAC,gBAAgB,CAAC,GAAmB;QACxC,MAAM,EAAE,eAAe,EAAE,WAAW,EAAE,GAAG,MAAM,eAAe,CAAC,MAAM,CAAC,GAAG,CAAC,CAAA;QAE1E,2DAA2D;QAE3D,MAAM,KAAK,GAAG,IAAI,WAAW,CAAC,WAAW,CAAC,CAAA;QAC1C,MAAM,KAAK,GAAG,IAAI,WAAW,CAAC,WAAW,CAAC,CAAA;QAE1C,eAAe,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,CAAA;QAChC,eAAe,CAAC,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,CAAA;IAClC,CAAC;IAED,OAAO;QACL,KAAK,CAAC,OAAO,EAAE,CAAA;QAEf,OAAO,IAAI,CAAC,OAAO,CAAA;IACrB,CAAC;IAED;;;;;OAKG;IACH,oBAAoB,CAAC,GAAmB,IAAG,CAAC;IAE5C;;;OAGG;IACH,UAAU;QACR,KAAK,CAAC,UAAU,EAAE,CAAA;IACpB,CAAC;IAED,IAAI,MAAM;QACR,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,IAAI,CAAC,KAAK,CAAA;QAEjC,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE,CAAC;YAC/B,IAAI,CAAC;gBACH,IAAI,CAAC,YAAY,MAAM,EAAE,CAAC,CAAA;YAC5B,CAAC;YAAC,OAAO,CAAC,EAAE,CAAC;gBACX,KAAK,CAAC,CAAC,CAAC,CAAA;YACV,CAAC;QACH,CAAC;QAED,OAAO,MAAM,CAAA;IACf,CAAC;IAED,IAAI,OAAO;QACT,OAAO,KAAK,CAAA;IACd,CAAC;CACF;AAED,SAAS,CAAC,QAAQ,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAA","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'textarea',\n label: 'config',\n name: 'config'\n }\n ]\n}\n\nimport { Component, HTMLOverlayContainer, Properties, ComponentNature, error } from '@hatiolab/things-scene'\n\nimport { SciChartSurface } from 'scichart/Charting/Visuals/SciChartSurface'\nimport { NumericAxis } from 'scichart/Charting/Visuals/Axis/NumericAxis'\n\nSciChartSurface.configure({\n dataUrl: `/node_modules/scichart/_wasm/scichart2d.data`,\n wasmUrl: `/node_modules/scichart/_wasm/scichart2d.wasm`\n})\n\nexport default class Scichart extends HTMLOverlayContainer {\n static get nature() {\n return NATURE\n }\n\n _anchor?: HTMLDivElement\n\n async oncreate_element(div: HTMLDivElement) {\n const { sciChartSurface, wasmContext } = await SciChartSurface.create(div)\n\n // SciChartSurface.setRuntimeLicenseKey('YOUR_RUNTIME_KEY')\n\n const xAxis = new NumericAxis(wasmContext)\n const yAxis = new NumericAxis(wasmContext)\n\n sciChartSurface.xAxes.add(xAxis)\n sciChartSurface.yAxes.add(yAxis)\n }\n\n dispose() {\n super.dispose()\n\n delete this._anchor\n }\n\n /*\n * 컴포넌트의 생성 또는 속성 변화 시에 호출되며,\n * 그에 따른 html element의 반영이 필요한 부분을 구현한다.\n *\n * ThingsComponent state => HTML element properties\n */\n setElementProperties(div: HTMLDivElement) {}\n\n /*\n * 컴포넌트가 ready 상태가 되거나, 컴포넌트의 속성이 변화될 시 setElementProperties 뒤에 호출된다.\n * 변화에 따른 기본적인 html 속성이 super.reposition()에서 진행되고, 그 밖의 작업이 필요할 때, 오버라이드 한다.\n */\n reposition() {\n super.reposition()\n }\n\n get config() {\n var { config, data } = this.state\n\n if (typeof config !== 'object') {\n try {\n eval(`config = ${config}`)\n } catch (e) {\n error(e)\n }\n }\n\n return config\n }\n\n get tagName() {\n return 'div'\n }\n}\n\nComponent.register('scichart', Scichart)\n"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/templates/index.ts"],"names":[],"mappings":"AAAA,OAAO,QAAQ,MAAM,YAAY,CAAA;AACjC,OAAO,mBAAmB,MAAM,yBAAyB,CAAA;AAEzD,eAAe,CAAC,QAAQ,EAAE,mBAAmB,CAAC,CAAA","sourcesContent":["import scichart from './scichart'\nimport scichartCandleStick from './scichart-candle-stick'\n\nexport default [scichart, scichartCandleStick]\n"]}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
const icon = new URL('../../icons/scichart-candle-stick.png', import.meta.url).href;
|
2
|
+
export default {
|
3
|
+
type: 'scichart-candle-stick',
|
4
|
+
description: 'scichart-candle-stick',
|
5
|
+
/* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */
|
6
|
+
group: 'chartAndGauge',
|
7
|
+
icon,
|
8
|
+
model: {
|
9
|
+
type: 'scichart-candle-stick',
|
10
|
+
left: 10,
|
11
|
+
top: 10,
|
12
|
+
width: 400,
|
13
|
+
height: 300
|
14
|
+
}
|
15
|
+
};
|
16
|
+
//# sourceMappingURL=scichart-candle-stick.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"scichart-candle-stick.js","sourceRoot":"","sources":["../../src/templates/scichart-candle-stick.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,uCAAuC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEnF,eAAe;IACb,IAAI,EAAE,uBAAuB;IAC7B,WAAW,EAAE,uBAAuB;IACpC,gGAAgG;IAChG,KAAK,EAAE,eAAe;IACtB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,uBAAuB;QAC7B,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,GAAG;KACZ;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/scichart-candle-stick.png', import.meta.url).href\n\nexport default {\n type: 'scichart-candle-stick',\n description: 'scichart-candle-stick',\n /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */\n group: 'chartAndGauge',\n icon,\n model: {\n type: 'scichart-candle-stick',\n left: 10,\n top: 10,\n width: 400,\n height: 300\n }\n}\n"]}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
const icon = new URL('../../icons/scichart.png', import.meta.url).href;
|
2
|
+
export default {
|
3
|
+
type: 'scichart',
|
4
|
+
description: 'scichart',
|
5
|
+
/* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */
|
6
|
+
group: 'chartAndGauge',
|
7
|
+
icon,
|
8
|
+
model: {
|
9
|
+
type: 'scichart',
|
10
|
+
left: 10,
|
11
|
+
top: 10,
|
12
|
+
width: 400,
|
13
|
+
height: 300
|
14
|
+
}
|
15
|
+
};
|
16
|
+
//# sourceMappingURL=scichart.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"scichart.js","sourceRoot":"","sources":["../../src/templates/scichart.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,0BAA0B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEtE,eAAe;IACb,IAAI,EAAE,UAAU;IAChB,WAAW,EAAE,UAAU;IACvB,gGAAgG;IAChG,KAAK,EAAE,eAAe;IACtB,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,UAAU;QAChB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,GAAG;KACZ;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/scichart.png', import.meta.url).href\n\nexport default {\n type: 'scichart',\n description: 'scichart',\n /* line|shape|textAndMedia|chartAndGauge|table|container|dataSource|IoT|3D|warehouse|form|etc */\n group: 'chartAndGauge',\n icon,\n model: {\n type: 'scichart',\n left: 10,\n top: 10,\n width: 400,\n height: 300\n }\n}\n"]}
|
@@ -0,0 +1,56 @@
|
|
1
|
+
import { IThemeProvider, SciChartJsNavyTheme } from 'scichart';
|
2
|
+
export interface AppThemeBase {
|
3
|
+
SciChartJsTheme: IThemeProvider;
|
4
|
+
ForegroundColor: string;
|
5
|
+
Background: string;
|
6
|
+
VividSkyBlue: string;
|
7
|
+
VividPink: string;
|
8
|
+
VividTeal: string;
|
9
|
+
VividOrange: string;
|
10
|
+
VividBlue: string;
|
11
|
+
VividPurple: string;
|
12
|
+
VividGreen: string;
|
13
|
+
VividRed: string;
|
14
|
+
MutedSkyBlue: string;
|
15
|
+
MutedPink: string;
|
16
|
+
MutedTeal: string;
|
17
|
+
MutedOrange: string;
|
18
|
+
MutedBlue: string;
|
19
|
+
MutedPurple: string;
|
20
|
+
MutedRed: string;
|
21
|
+
PaleSkyBlue: string;
|
22
|
+
PalePink: string;
|
23
|
+
PaleTeal: string;
|
24
|
+
PaleOrange: string;
|
25
|
+
PaleBlue: string;
|
26
|
+
PalePurple: string;
|
27
|
+
}
|
28
|
+
export declare class SciChartAppTheme implements AppThemeBase {
|
29
|
+
SciChartJsTheme: SciChartJsNavyTheme;
|
30
|
+
ForegroundColor: string;
|
31
|
+
Background: string;
|
32
|
+
VividSkyBlue: string;
|
33
|
+
VividPink: string;
|
34
|
+
VividTeal: string;
|
35
|
+
VividOrange: string;
|
36
|
+
VividBlue: string;
|
37
|
+
VividPurple: string;
|
38
|
+
VividGreen: string;
|
39
|
+
VividRed: string;
|
40
|
+
DarkIndigo: string;
|
41
|
+
Indigo: string;
|
42
|
+
MutedSkyBlue: string;
|
43
|
+
MutedPink: string;
|
44
|
+
MutedTeal: string;
|
45
|
+
MutedOrange: string;
|
46
|
+
MutedBlue: string;
|
47
|
+
MutedPurple: string;
|
48
|
+
MutedRed: string;
|
49
|
+
PaleSkyBlue: string;
|
50
|
+
PalePink: string;
|
51
|
+
PaleTeal: string;
|
52
|
+
PaleOrange: string;
|
53
|
+
PaleBlue: string;
|
54
|
+
PalePurple: string;
|
55
|
+
}
|
56
|
+
export declare const appTheme: SciChartAppTheme;
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import { SciChartJsNavyTheme } from 'scichart';
|
2
|
+
export class SciChartAppTheme {
|
3
|
+
constructor() {
|
4
|
+
this.SciChartJsTheme = new SciChartJsNavyTheme();
|
5
|
+
// General colors
|
6
|
+
this.ForegroundColor = '#FFFFFF';
|
7
|
+
this.Background = this.SciChartJsTheme.sciChartBackground;
|
8
|
+
// Series colors
|
9
|
+
this.VividSkyBlue = '#50C7E0';
|
10
|
+
this.VividPink = '#EC0F6C';
|
11
|
+
this.VividTeal = '#30BC9A';
|
12
|
+
this.VividOrange = '#F48420';
|
13
|
+
this.VividBlue = '#364BA0';
|
14
|
+
this.VividPurple = '#882B91';
|
15
|
+
this.VividGreen = '#67BDAF';
|
16
|
+
this.VividRed = '#C52E60';
|
17
|
+
this.DarkIndigo = '#14233C';
|
18
|
+
this.Indigo = '#264B93';
|
19
|
+
this.MutedSkyBlue = '#83D2F5';
|
20
|
+
this.MutedPink = '#DF69A8';
|
21
|
+
this.MutedTeal = '#7BCAAB';
|
22
|
+
this.MutedOrange = '#E7C565';
|
23
|
+
this.MutedBlue = '#537ABD';
|
24
|
+
this.MutedPurple = '#A16DAE';
|
25
|
+
this.MutedRed = '#DC7969';
|
26
|
+
this.PaleSkyBlue = '#E4F5FC';
|
27
|
+
this.PalePink = '#EEB3D2';
|
28
|
+
this.PaleTeal = '#B9E0D4';
|
29
|
+
this.PaleOrange = '#F1CFB5';
|
30
|
+
this.PaleBlue = '#B5BEDF';
|
31
|
+
this.PalePurple = '#CFB4D5';
|
32
|
+
}
|
33
|
+
}
|
34
|
+
export const appTheme = new SciChartAppTheme();
|
35
|
+
//# sourceMappingURL=app-theme.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"app-theme.js","sourceRoot":"","sources":["../../src/themes/app-theme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,mBAAmB,EAAE,MAAM,UAAU,CAAA;AAmC9D,MAAM,OAAO,gBAAgB;IAA7B;QACE,oBAAe,GAAG,IAAI,mBAAmB,EAAE,CAAA;QAE3C,iBAAiB;QACjB,oBAAe,GAAG,SAAS,CAAA;QAC3B,eAAU,GAAG,IAAI,CAAC,eAAe,CAAC,kBAAkB,CAAA;QAEpD,gBAAgB;QAChB,iBAAY,GAAG,SAAS,CAAA;QACxB,cAAS,GAAG,SAAS,CAAA;QACrB,cAAS,GAAG,SAAS,CAAA;QACrB,gBAAW,GAAG,SAAS,CAAA;QACvB,cAAS,GAAG,SAAS,CAAA;QACrB,gBAAW,GAAG,SAAS,CAAA;QACvB,eAAU,GAAG,SAAS,CAAA;QACtB,aAAQ,GAAG,SAAS,CAAA;QAEpB,eAAU,GAAG,SAAS,CAAA;QACtB,WAAM,GAAG,SAAS,CAAA;QAElB,iBAAY,GAAG,SAAS,CAAA;QACxB,cAAS,GAAG,SAAS,CAAA;QACrB,cAAS,GAAG,SAAS,CAAA;QACrB,gBAAW,GAAG,SAAS,CAAA;QACvB,cAAS,GAAG,SAAS,CAAA;QACrB,gBAAW,GAAG,SAAS,CAAA;QACvB,aAAQ,GAAG,SAAS,CAAA;QAEpB,gBAAW,GAAG,SAAS,CAAA;QACvB,aAAQ,GAAG,SAAS,CAAA;QACpB,aAAQ,GAAG,SAAS,CAAA;QACpB,eAAU,GAAG,SAAS,CAAA;QACtB,aAAQ,GAAG,SAAS,CAAA;QACpB,eAAU,GAAG,SAAS,CAAA;IACxB,CAAC;CAAA;AAED,MAAM,CAAC,MAAM,QAAQ,GAAG,IAAI,gBAAgB,EAAE,CAAA","sourcesContent":["import { IThemeProvider, SciChartJsNavyTheme } from 'scichart'\n\nexport interface AppThemeBase {\n SciChartJsTheme: IThemeProvider\n\n // general colors\n ForegroundColor: string\n Background: string\n\n // Series colors\n VividSkyBlue: string\n VividPink: string\n VividTeal: string\n VividOrange: string\n VividBlue: string\n VividPurple: string\n VividGreen: string\n VividRed: string\n\n MutedSkyBlue: string\n MutedPink: string\n MutedTeal: string\n MutedOrange: string\n MutedBlue: string\n MutedPurple: string\n MutedRed: string\n\n PaleSkyBlue: string\n PalePink: string\n PaleTeal: string\n PaleOrange: string\n PaleBlue: string\n PalePurple: string\n}\n\nexport class SciChartAppTheme implements AppThemeBase {\n SciChartJsTheme = new SciChartJsNavyTheme()\n\n // General colors\n ForegroundColor = '#FFFFFF'\n Background = this.SciChartJsTheme.sciChartBackground\n\n // Series colors\n VividSkyBlue = '#50C7E0'\n VividPink = '#EC0F6C'\n VividTeal = '#30BC9A'\n VividOrange = '#F48420'\n VividBlue = '#364BA0'\n VividPurple = '#882B91'\n VividGreen = '#67BDAF'\n VividRed = '#C52E60'\n\n DarkIndigo = '#14233C'\n Indigo = '#264B93'\n\n MutedSkyBlue = '#83D2F5'\n MutedPink = '#DF69A8'\n MutedTeal = '#7BCAAB'\n MutedOrange = '#E7C565'\n MutedBlue = '#537ABD'\n MutedPurple = '#A16DAE'\n MutedRed = '#DC7969'\n\n PaleSkyBlue = '#E4F5FC'\n PalePink = '#EEB3D2'\n PaleTeal = '#B9E0D4'\n PaleOrange = '#F1CFB5'\n PaleBlue = '#B5BEDF'\n PalePurple = '#CFB4D5'\n}\n\nexport const appTheme = new SciChartAppTheme()\n"]}
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"keep": {
|
3
|
+
"days": true,
|
4
|
+
"amount": 2
|
5
|
+
},
|
6
|
+
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
7
|
+
"files": [
|
8
|
+
{
|
9
|
+
"date": 1710444349962,
|
10
|
+
"name": "logs/application-2024-03-15-04.log",
|
11
|
+
"hash": "eb89f381e0f3b4b7da4e5cac0d87cf0768f5e8e5cc24464be795d99449b00577"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"date": 1710612792259,
|
15
|
+
"name": "logs/application-2024-03-17-03.log",
|
16
|
+
"hash": "6cd8dff0d7d1791353f97065c80979e15b2b3db972de3c8e12c0fd89b150a188"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"date": 1710616729120,
|
20
|
+
"name": "logs/application-2024-03-17-04.log",
|
21
|
+
"hash": "45fc31108aa8c555856053487fa82fa90d03dd15776dbdf8ac4e2711b20a1bda"
|
22
|
+
}
|
23
|
+
],
|
24
|
+
"hashType": "sha256"
|
25
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
{
|
2
|
+
"keep": {
|
3
|
+
"days": true,
|
4
|
+
"amount": 14
|
5
|
+
},
|
6
|
+
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
7
|
+
"files": [
|
8
|
+
{
|
9
|
+
"date": 1710441936840,
|
10
|
+
"name": "logs/connections-2024-03-15-03.log",
|
11
|
+
"hash": "b381c0447c295d9f128792119e2de7a76dea1ee944afa622dddf3a762d9fa7e4"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"date": 1710444351579,
|
15
|
+
"name": "logs/connections-2024-03-15-04.log",
|
16
|
+
"hash": "4abecbcd0694c382960b144b1015206a725609a8b1c80993e4abbac215fb91d0"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"date": 1710612794085,
|
20
|
+
"name": "logs/connections-2024-03-17-03.log",
|
21
|
+
"hash": "8a4af4443bb85f7c73338aa3654c5ad6e77db454cd25064a792dedd098def2ff"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"date": 1710616730929,
|
25
|
+
"name": "logs/connections-2024-03-17-04.log",
|
26
|
+
"hash": "ca0a8f57c75f235daeea65f8f4c6639c9ccd05c8a9095b2f04b926c5a0463b98"
|
27
|
+
}
|
28
|
+
],
|
29
|
+
"hashType": "sha256"
|
30
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
2024-03-15T04:25:51+09:00 info: File Storage is Ready.
|
2
|
+
2024-03-15T04:25:51+09:00 error: oracledb module loading failed
|
3
|
+
2024-03-15T04:25:51+09:00 error: oracledb module loading failed
|
4
|
+
2024-03-15T04:25:53+09:00 info: Default DataSource established
|
5
|
+
2024-03-15T04:25:54+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
6
|
+
2024-03-15T04:25:54+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
7
|
+
2024-03-15T04:43:40+09:00 info: File Storage is Ready.
|
8
|
+
2024-03-15T04:43:41+09:00 error: oracledb module loading failed
|
9
|
+
2024-03-15T04:43:41+09:00 error: oracledb module loading failed
|
10
|
+
2024-03-15T04:43:43+09:00 info: Default DataSource established
|
11
|
+
2024-03-15T04:43:43+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
12
|
+
2024-03-15T04:43:43+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
13
|
+
2024-03-15T04:56:44+09:00 info: File Storage is Ready.
|
14
|
+
2024-03-15T04:56:45+09:00 error: oracledb module loading failed
|
15
|
+
2024-03-15T04:56:45+09:00 error: oracledb module loading failed
|
16
|
+
2024-03-15T04:56:46+09:00 info: Default DataSource established
|
17
|
+
2024-03-15T04:56:47+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
18
|
+
2024-03-15T04:56:47+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
19
|
+
2024-03-15T04:57:13+09:00 error: read ECONNRESET
|
20
|
+
2024-03-15T04:57:13+09:00 error: read ECONNRESET
|
21
|
+
2024-03-15T04:57:13+09:00 error: read ECONNRESET
|
22
|
+
2024-03-15T04:57:13+09:00 error: read ECONNRESET
|
23
|
+
2024-03-15T04:57:37+09:00 info: File Storage is Ready.
|
24
|
+
2024-03-15T04:57:38+09:00 error: oracledb module loading failed
|
25
|
+
2024-03-15T04:57:38+09:00 error: oracledb module loading failed
|
26
|
+
2024-03-15T04:57:39+09:00 info: Default DataSource established
|
27
|
+
2024-03-15T04:57:39+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
28
|
+
2024-03-15T04:57:39+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
@@ -0,0 +1,12 @@
|
|
1
|
+
2024-03-17T03:13:13+09:00 info: File Storage is Ready.
|
2
|
+
2024-03-17T03:13:14+09:00 error: oracledb module loading failed
|
3
|
+
2024-03-17T03:13:14+09:00 error: oracledb module loading failed
|
4
|
+
2024-03-17T03:13:16+09:00 info: Default DataSource established
|
5
|
+
2024-03-17T03:13:17+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
6
|
+
2024-03-17T03:13:17+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
7
|
+
2024-03-17T03:44:27+09:00 info: File Storage is Ready.
|
8
|
+
2024-03-17T03:44:27+09:00 error: oracledb module loading failed
|
9
|
+
2024-03-17T03:44:27+09:00 error: oracledb module loading failed
|
10
|
+
2024-03-17T03:44:29+09:00 info: Default DataSource established
|
11
|
+
2024-03-17T03:44:30+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
12
|
+
2024-03-17T03:44:30+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
@@ -0,0 +1,6 @@
|
|
1
|
+
2024-03-17T04:18:50+09:00 info: File Storage is Ready.
|
2
|
+
2024-03-17T04:18:51+09:00 error: oracledb module loading failed
|
3
|
+
2024-03-17T04:18:51+09:00 error: oracledb module loading failed
|
4
|
+
2024-03-17T04:18:52+09:00 info: Default DataSource established
|
5
|
+
2024-03-17T04:18:53+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
6
|
+
2024-03-17T04:18:53+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
@@ -0,0 +1,82 @@
|
|
1
|
+
2024-03-15T03:45:53+09:00 info: Initializing ConnectionManager...
|
2
|
+
2024-03-15T03:45:53+09:00 info: Connector 'echo-back-server' started to ready
|
3
|
+
2024-03-15T03:45:53+09:00 info: Connector 'echo-back' started to ready
|
4
|
+
2024-03-15T03:45:53+09:00 info: Connector 'http-connector' started to ready
|
5
|
+
2024-03-15T03:45:53+09:00 info: Connector 'graphql-connector' started to ready
|
6
|
+
2024-03-15T03:45:53+09:00 info: Connector 'sqlite-connector' started to ready
|
7
|
+
2024-03-15T03:45:53+09:00 info: Connector 'postgresql-connector' started to ready
|
8
|
+
2024-03-15T03:45:53+09:00 info: Connector 'mqtt-connector' started to ready
|
9
|
+
2024-03-15T03:45:53+09:00 info: Connector 'mssql-connector' started to ready
|
10
|
+
2024-03-15T03:45:53+09:00 info: Connector 'oracle-connector' started to ready
|
11
|
+
2024-03-15T03:45:53+09:00 info: Connector 'mysql-connector' started to ready
|
12
|
+
2024-03-15T03:45:53+09:00 info: Connector 'socket-server' started to ready
|
13
|
+
2024-03-15T03:45:53+09:00 info: Connector 'operato-connector' started to ready
|
14
|
+
2024-03-15T03:45:53+09:00 info: Connector 'msgraph-connector' started to ready
|
15
|
+
2024-03-15T03:45:53+09:00 info: echo-back-servers are ready
|
16
|
+
2024-03-15T03:45:53+09:00 info: echo-back connections are ready
|
17
|
+
2024-03-15T03:45:53+09:00 info: http-connector connections are ready
|
18
|
+
2024-03-15T03:45:53+09:00 info: graphql-connector connections are ready
|
19
|
+
2024-03-15T03:45:53+09:00 info: sqlite-connector connections are ready
|
20
|
+
2024-03-15T03:45:53+09:00 info: postgresql-connector connections are ready
|
21
|
+
2024-03-15T03:45:53+09:00 info: mqtt-connector connections are ready
|
22
|
+
2024-03-15T03:45:53+09:00 info: mssql-connector connections are ready
|
23
|
+
2024-03-15T03:45:53+09:00 info: oracle-connector connections are ready
|
24
|
+
2024-03-15T03:45:53+09:00 info: mysql-connector connections are ready
|
25
|
+
2024-03-15T03:45:53+09:00 info: socket servers are ready
|
26
|
+
2024-03-15T03:45:53+09:00 info: graphql-connector connections are ready
|
27
|
+
2024-03-15T03:45:53+09:00 info: msgraph-connector connections are ready
|
28
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'echo-back-server' ready
|
29
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'echo-back' ready
|
30
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'http-connector' ready
|
31
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'graphql-connector' ready
|
32
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'sqlite-connector' ready
|
33
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'postgresql-connector' ready
|
34
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'mqtt-connector' ready
|
35
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'mssql-connector' ready
|
36
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'oracle-connector' ready
|
37
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'mysql-connector' ready
|
38
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'socket-server' ready
|
39
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'operato-connector' ready
|
40
|
+
2024-03-15T03:45:53+09:00 info: All connector for 'msgraph-connector' ready
|
41
|
+
2024-03-15T03:45:53+09:00 info: ConnectionManager initialization done:
|
42
|
+
2024-03-15T03:50:09+09:00 info: Initializing ConnectionManager...
|
43
|
+
2024-03-15T03:50:09+09:00 info: Connector 'echo-back-server' started to ready
|
44
|
+
2024-03-15T03:50:09+09:00 info: Connector 'echo-back' started to ready
|
45
|
+
2024-03-15T03:50:09+09:00 info: Connector 'http-connector' started to ready
|
46
|
+
2024-03-15T03:50:09+09:00 info: Connector 'graphql-connector' started to ready
|
47
|
+
2024-03-15T03:50:09+09:00 info: Connector 'sqlite-connector' started to ready
|
48
|
+
2024-03-15T03:50:09+09:00 info: Connector 'postgresql-connector' started to ready
|
49
|
+
2024-03-15T03:50:09+09:00 info: Connector 'mqtt-connector' started to ready
|
50
|
+
2024-03-15T03:50:09+09:00 info: Connector 'mssql-connector' started to ready
|
51
|
+
2024-03-15T03:50:09+09:00 info: Connector 'oracle-connector' started to ready
|
52
|
+
2024-03-15T03:50:09+09:00 info: Connector 'mysql-connector' started to ready
|
53
|
+
2024-03-15T03:50:09+09:00 info: Connector 'socket-server' started to ready
|
54
|
+
2024-03-15T03:50:09+09:00 info: Connector 'operato-connector' started to ready
|
55
|
+
2024-03-15T03:50:09+09:00 info: Connector 'msgraph-connector' started to ready
|
56
|
+
2024-03-15T03:50:09+09:00 info: echo-back-servers are ready
|
57
|
+
2024-03-15T03:50:09+09:00 info: echo-back connections are ready
|
58
|
+
2024-03-15T03:50:09+09:00 info: http-connector connections are ready
|
59
|
+
2024-03-15T03:50:09+09:00 info: graphql-connector connections are ready
|
60
|
+
2024-03-15T03:50:09+09:00 info: sqlite-connector connections are ready
|
61
|
+
2024-03-15T03:50:09+09:00 info: postgresql-connector connections are ready
|
62
|
+
2024-03-15T03:50:09+09:00 info: mqtt-connector connections are ready
|
63
|
+
2024-03-15T03:50:09+09:00 info: mssql-connector connections are ready
|
64
|
+
2024-03-15T03:50:09+09:00 info: oracle-connector connections are ready
|
65
|
+
2024-03-15T03:50:09+09:00 info: mysql-connector connections are ready
|
66
|
+
2024-03-15T03:50:09+09:00 info: socket servers are ready
|
67
|
+
2024-03-15T03:50:09+09:00 info: graphql-connector connections are ready
|
68
|
+
2024-03-15T03:50:09+09:00 info: msgraph-connector connections are ready
|
69
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'echo-back-server' ready
|
70
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'echo-back' ready
|
71
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'http-connector' ready
|
72
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'graphql-connector' ready
|
73
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'sqlite-connector' ready
|
74
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'postgresql-connector' ready
|
75
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'mqtt-connector' ready
|
76
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'mssql-connector' ready
|
77
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'oracle-connector' ready
|
78
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'mysql-connector' ready
|
79
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'socket-server' ready
|
80
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'operato-connector' ready
|
81
|
+
2024-03-15T03:50:09+09:00 info: All connector for 'msgraph-connector' ready
|
82
|
+
2024-03-15T03:50:09+09:00 info: ConnectionManager initialization done:
|