@cloudcare/guance-front-tools 1.0.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/.prettierignore +3 -0
- package/.prettierrc +6 -0
- package/LICENSE +21 -0
- package/README.md +31 -0
- package/cli.js +16 -0
- package/lib/cjs/generated/browserSessionReplay.d.ts +703 -0
- package/lib/cjs/generated/browserSessionReplay.js +6 -0
- package/lib/cjs/generated/dashboardCharts.d.ts +1372 -0
- package/lib/cjs/generated/dashboardCharts.js +6 -0
- package/lib/cjs/generated/mobileSessionReplay.d.ts +653 -0
- package/lib/cjs/generated/mobileSessionReplay.js +6 -0
- package/lib/cjs/generated/sessionReplay.d.ts +1190 -0
- package/lib/cjs/generated/sessionReplay.js +6 -0
- package/lib/cjs/src/dashboard-charts.d.ts +1 -0
- package/lib/cjs/src/dashboard-charts.js +17 -0
- package/lib/cjs/src/index.d.ts +2 -0
- package/lib/cjs/src/index.js +18 -0
- package/lib/cjs/src/session-replay-browser.d.ts +58 -0
- package/lib/cjs/src/session-replay-browser.js +69 -0
- package/lib/cjs/src/session-replay-mobile.d.ts +30 -0
- package/lib/cjs/src/session-replay-mobile.js +42 -0
- package/lib/cjs/src/session-replay.d.ts +30 -0
- package/lib/cjs/src/session-replay.js +49 -0
- package/lib/esm/generated/browserSessionReplay.d.ts +703 -0
- package/lib/esm/generated/browserSessionReplay.js +5 -0
- package/lib/esm/generated/dashboardCharts.d.ts +1372 -0
- package/lib/esm/generated/dashboardCharts.js +5 -0
- package/lib/esm/generated/mobileSessionReplay.d.ts +653 -0
- package/lib/esm/generated/mobileSessionReplay.js +5 -0
- package/lib/esm/generated/sessionReplay.d.ts +1190 -0
- package/lib/esm/generated/sessionReplay.js +5 -0
- package/lib/esm/src/dashboard-charts.d.ts +1 -0
- package/lib/esm/src/dashboard-charts.js +1 -0
- package/lib/esm/src/index.d.ts +2 -0
- package/lib/esm/src/index.js +2 -0
- package/lib/esm/src/session-replay-browser.d.ts +58 -0
- package/lib/esm/src/session-replay-browser.js +52 -0
- package/lib/esm/src/session-replay-mobile.d.ts +30 -0
- package/lib/esm/src/session-replay-mobile.js +25 -0
- package/lib/esm/src/session-replay.d.ts +30 -0
- package/lib/esm/src/session-replay.js +24 -0
- package/lib/example/grafana-dashboard.json +2205 -0
- package/lib/example/guance-covert-test.json +629 -0
- package/lib/example/guance-dashboard-1.json +672 -0
- package/lib/example/guance-dashboard.json +2841 -0
- package/lib/scripts/grafana-covert-to-guance.d.ts +1 -0
- package/lib/scripts/grafana-covert-to-guance.js +367 -0
- package/lib/scripts/grafana-covert-to-guance.ts +374 -0
- package/lib/scripts/grafana-dashbord.d.ts +2220 -0
- package/lib/scripts/grafana-dashbord.js +1 -0
- package/lib/scripts/grafana-dashbord.ts +2427 -0
- package/lib/src/dashboard-charts.ts +1 -0
- package/lib/src/index.ts +2 -0
- package/lib/src/session-replay-browser.ts +98 -0
- package/lib/src/session-replay-mobile.ts +54 -0
- package/lib/src/session-replay.ts +61 -0
- package/package.json +45 -0
- package/samples/dashboard/dashboard.json +2842 -0
- package/samples/dashboard/promql-dashboard.json +2175 -0
- package/samples/session-replay/mobile/record/full-snapshot-record.json +51 -0
- package/samples/session-replay/mobile/record/has-focus-record.json +7 -0
- package/samples/session-replay/mobile/record/incremental-snapshot-record.json +74 -0
- package/samples/session-replay/mobile/record/metadata-record.json +8 -0
- package/samples/session-replay/mobile/record/view-end-record.json +4 -0
- package/samples/session-replay/mobile/segment/segment.json +110 -0
- package/schemas/charts/chart-schema.json +73 -0
- package/schemas/charts/common/common-chart-types-schema.json +37 -0
- package/schemas/charts/common/common-vars-item-schema.json +117 -0
- package/schemas/charts/common/common-vars-schema.json +10 -0
- package/schemas/charts/dashboard-schema.json +73 -0
- package/schemas/charts/query/queries-schema.json +10 -0
- package/schemas/charts/query/query-item-schema.json +42 -0
- package/schemas/charts/settings/_common-settings-connect-null-schema.json +7 -0
- package/schemas/charts/settings/_common-settings-gradual-color-schema.json +72 -0
- package/schemas/charts/settings/_common-settings-groupby-schema.json +22 -0
- package/schemas/charts/settings/_common-settings-legend-position-schema.json +14 -0
- package/schemas/charts/settings/_common-settings-legend-values-schema.json +19 -0
- package/schemas/charts/settings/_common-settings-open-stack-schema.json +8 -0
- package/schemas/charts/settings/_common-settings-show-label-schema.json +8 -0
- package/schemas/charts/settings/_common-settings-show-line-schema.json +8 -0
- package/schemas/charts/settings/_common-settings-stack-content-schema.json +12 -0
- package/schemas/charts/settings/_common-settings-stack-type-schema.json +11 -0
- package/schemas/charts/settings/chart-alarm-settings-schema.json +48 -0
- package/schemas/charts/settings/chart-bar-settings-schema.json +69 -0
- package/schemas/charts/settings/chart-chinamap-settings-schema.json +102 -0
- package/schemas/charts/settings/chart-funnel-settings-schema.json +34 -0
- package/schemas/charts/settings/chart-gauge-settings-schema.json +65 -0
- package/schemas/charts/settings/chart-heatmap-settings-schema.json +50 -0
- package/schemas/charts/settings/chart-hexgon-settings-schema.json +90 -0
- package/schemas/charts/settings/chart-histogram-settings-schema.json +47 -0
- package/schemas/charts/settings/chart-iframe-settings-schema.json +24 -0
- package/schemas/charts/settings/chart-log-settings-schema.json +84 -0
- package/schemas/charts/settings/chart-object-settings-schema.json +52 -0
- package/schemas/charts/settings/chart-picture-settings-schema.json +46 -0
- package/schemas/charts/settings/chart-pie-settings-schema.json +90 -0
- package/schemas/charts/settings/chart-sankey-settings-schema.json +34 -0
- package/schemas/charts/settings/chart-scatter-bubble-settings-schema.json +31 -0
- package/schemas/charts/settings/chart-sequence-settings-schema.json +76 -0
- package/schemas/charts/settings/chart-singlestat-settings-schema.json +163 -0
- package/schemas/charts/settings/chart-table-settings-schema.json +184 -0
- package/schemas/charts/settings/chart-text-settings-schema.json +20 -0
- package/schemas/charts/settings/chart-toplist-settings-schema.json +117 -0
- package/schemas/charts/settings/chart-topology-settings-schema.json +71 -0
- package/schemas/charts/settings/chart-treemap-settings-schema.json +66 -0
- package/schemas/charts/settings/chart-worldmap-settings-schema.json +102 -0
- package/schemas/charts/settings/common-settings-schema.json +82 -0
- package/schemas/charts/settings/settings-alias-schema.json +47 -0
- package/schemas/charts/settings/settings-chart-type-schema.json +27 -0
- package/schemas/charts/settings/settings-colors-schema.json +46 -0
- package/schemas/charts/settings/settings-compare-schema.json +58 -0
- package/schemas/charts/settings/settings-fixed-time-schema.json +49 -0
- package/schemas/charts/settings/settings-levels-schema.json +33 -0
- package/schemas/charts/settings/settings-schema.json +79 -0
- package/schemas/charts/settings/settings-time-schema.json +47 -0
- package/schemas/charts/settings/settings-unit-items-schema.json +226 -0
- package/schemas/charts/settings/settings-units-schema.json +60 -0
- package/schemas/dashboard-schema.json +5 -0
- package/schemas/session-replay/browser/attribute-mutation-schema.json +21 -0
- package/schemas/session-replay/browser/attributes-schema.json +10 -0
- package/schemas/session-replay/browser/cdata-node-schema.json +19 -0
- package/schemas/session-replay/browser/creation-reason-schema.json +17 -0
- package/schemas/session-replay/browser/document-fragment-node-schema.json +35 -0
- package/schemas/session-replay/browser/document-node-schema.json +30 -0
- package/schemas/session-replay/browser/document-type-node-schema.json +28 -0
- package/schemas/session-replay/browser/element-node-schema.json +33 -0
- package/schemas/session-replay/browser/frustration-record-schema.json +49 -0
- package/schemas/session-replay/browser/full-snapshot-record-schema.json +26 -0
- package/schemas/session-replay/browser/incremental-data-schema.json +36 -0
- package/schemas/session-replay/browser/incremental-snapshot-record-schema.json +29 -0
- package/schemas/session-replay/browser/input-data-schema.json +27 -0
- package/schemas/session-replay/browser/input-state-schema.json +27 -0
- package/schemas/session-replay/browser/media-interaction-data-schema.json +23 -0
- package/schemas/session-replay/browser/media-interaction-schema.json +20 -0
- package/schemas/session-replay/browser/mouse-interaction-data-schema.json +23 -0
- package/schemas/session-replay/browser/mouse-interaction-schema.json +47 -0
- package/schemas/session-replay/browser/mouse-move-data-schema.json +23 -0
- package/schemas/session-replay/browser/mouse-position-schema.json +26 -0
- package/schemas/session-replay/browser/mutation-data-schema.json +23 -0
- package/schemas/session-replay/browser/mutation-payload-schema.json +42 -0
- package/schemas/session-replay/browser/node-added-mutation-schema.json +41 -0
- package/schemas/session-replay/browser/node-removed-mutation-schema.json +18 -0
- package/schemas/session-replay/browser/node-schema.json +28 -0
- package/schemas/session-replay/browser/record-schema.json +30 -0
- package/schemas/session-replay/browser/scroll-data-schema.json +23 -0
- package/schemas/session-replay/browser/scroll-position-schema.json +22 -0
- package/schemas/session-replay/browser/segment-metadata-schema.json +28 -0
- package/schemas/session-replay/browser/segment-schema.json +25 -0
- package/schemas/session-replay/browser/serialized-node-schema.json +15 -0
- package/schemas/session-replay/browser/serialized-node-with-id-schema.json +21 -0
- package/schemas/session-replay/browser/stylesheet-rule-add-schema.json +28 -0
- package/schemas/session-replay/browser/stylesheet-rule-data-schema.json +23 -0
- package/schemas/session-replay/browser/stylesheet-rule-delete-schema.json +24 -0
- package/schemas/session-replay/browser/stylesheet-rule-schema.json +29 -0
- package/schemas/session-replay/browser/stylesheet-schema.json +30 -0
- package/schemas/session-replay/browser/text-mutation-schema.json +27 -0
- package/schemas/session-replay/browser/text-node-schema.json +23 -0
- package/schemas/session-replay/common/_common-record-schema.json +14 -0
- package/schemas/session-replay/common/_common-segment-metadata-schema.json +30 -0
- package/schemas/session-replay/common/_slot-supported-common-record-schema.json +21 -0
- package/schemas/session-replay/common/focus-record-schema.json +34 -0
- package/schemas/session-replay/common/meta-record-schema.json +42 -0
- package/schemas/session-replay/common/pointer-interaction-data-schema.json +23 -0
- package/schemas/session-replay/common/pointer-interaction-schema.json +34 -0
- package/schemas/session-replay/common/segment-context-schema.json +46 -0
- package/schemas/session-replay/common/view-end-record-schema.json +23 -0
- package/schemas/session-replay/common/viewport-resize-data-schema.json +23 -0
- package/schemas/session-replay/common/viewport-resize-dimension-schema.json +18 -0
- package/schemas/session-replay/common/visual-viewport-record-schema.json +50 -0
- package/schemas/session-replay/full-snapshot-record-schema.json +14 -0
- package/schemas/session-replay/incremental-data-schema.json +14 -0
- package/schemas/session-replay/incremental-snapshot-record-schema.json +14 -0
- package/schemas/session-replay/mobile/_common-shape-wireframe-schema.json +22 -0
- package/schemas/session-replay/mobile/_common-shape-wireframe-update-schema.json +22 -0
- package/schemas/session-replay/mobile/_common-wireframe-schema.json +38 -0
- package/schemas/session-replay/mobile/_common-wireframe-update-schema.json +38 -0
- package/schemas/session-replay/mobile/full-snapshot-record-schema.json +38 -0
- package/schemas/session-replay/mobile/image-wireframe-schema.json +43 -0
- package/schemas/session-replay/mobile/image-wireframe-update-schema.json +43 -0
- package/schemas/session-replay/mobile/incremental-data-schema.json +21 -0
- package/schemas/session-replay/mobile/incremental-snapshot-record-schema.json +26 -0
- package/schemas/session-replay/mobile/mutation-data-schema.json +23 -0
- package/schemas/session-replay/mobile/mutation-payload-schema.json +55 -0
- package/schemas/session-replay/mobile/placeholder-wireframe-schema.json +28 -0
- package/schemas/session-replay/mobile/placeholder-wireframe-update-schema.json +28 -0
- package/schemas/session-replay/mobile/record-schema.json +27 -0
- package/schemas/session-replay/mobile/segment-metadata-schema.json +25 -0
- package/schemas/session-replay/mobile/segment-schema.json +25 -0
- package/schemas/session-replay/mobile/shape-border-schema.json +25 -0
- package/schemas/session-replay/mobile/shape-style-schema.json +29 -0
- package/schemas/session-replay/mobile/shape-wireframe-schema.json +23 -0
- package/schemas/session-replay/mobile/shape-wireframe-update-schema.json +23 -0
- package/schemas/session-replay/mobile/text-position-schema.json +57 -0
- package/schemas/session-replay/mobile/text-style-schema.json +31 -0
- package/schemas/session-replay/mobile/text-wireframe-schema.json +34 -0
- package/schemas/session-replay/mobile/text-wireframe-update-schema.json +34 -0
- package/schemas/session-replay/mobile/touch-data-schema.json +51 -0
- package/schemas/session-replay/mobile/webview-wireframe-schema.json +33 -0
- package/schemas/session-replay/mobile/webview-wireframe-update-schema.json +33 -0
- package/schemas/session-replay/mobile/wireframe-clip-schema.json +29 -0
- package/schemas/session-replay/mobile/wireframe-schema.json +24 -0
- package/schemas/session-replay/mobile/wireframe-update-mutation-schema.json +24 -0
- package/schemas/session-replay/mutation-data-schema.json +14 -0
- package/schemas/session-replay/mutation-payload-schema.json +14 -0
- package/schemas/session-replay/record-schema.json +14 -0
- package/schemas/session-replay/segment-metadata-schema.json +14 -0
- package/schemas/session-replay/segment-schema.json +15 -0
- package/schemas/session-replay-browser-schema.json +5 -0
- package/schemas/session-replay-mobile-schema.json +5 -0
- package/schemas/session-replay-schema.json +33 -0
- package/scripts/generate.mjs +96 -0
- package/scripts/utils.mjs +16 -0
- package/scripts/validate.mjs +144 -0
- package/tsconfig.cjs.json +7 -0
- package/tsconfig.esm.json +7 -0
- package/tsconfig.json +13 -0
- package/tsconfig.script.json +15 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "charts/settings/chart-histogram-settings-schema.json",
|
|
4
|
+
"title": "ChartHistogramSettings",
|
|
5
|
+
"description": "直方图配置信息",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": true,
|
|
8
|
+
"allOf": [
|
|
9
|
+
{
|
|
10
|
+
"$ref": "common-settings-schema.json"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"properties": {
|
|
14
|
+
"alias": {
|
|
15
|
+
"$ref": "settings-alias-schema.json"
|
|
16
|
+
},
|
|
17
|
+
"colors": {
|
|
18
|
+
"$ref": "settings-colors-schema.json"
|
|
19
|
+
},
|
|
20
|
+
"levels": {
|
|
21
|
+
"$ref": "settings-levels-schema.json"
|
|
22
|
+
},
|
|
23
|
+
"legendPostion": {
|
|
24
|
+
"$ref": "_common-settings-legend-position-schema.json"
|
|
25
|
+
},
|
|
26
|
+
"isTimeInterval": {
|
|
27
|
+
"type": "boolean",
|
|
28
|
+
"description": "是否开启时间分片",
|
|
29
|
+
"default": false
|
|
30
|
+
},
|
|
31
|
+
"chartType": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"const": "histogram",
|
|
34
|
+
"description": "冗余字段,固定为 histogram "
|
|
35
|
+
},
|
|
36
|
+
"direction": {
|
|
37
|
+
"type": "string",
|
|
38
|
+
"const": "vertical",
|
|
39
|
+
"description": "冗余字段,固定为 vertical "
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"$ref": "settings-units-schema.json"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "charts/settings/chart-iframe-settings-schema.json",
|
|
4
|
+
"title": "ChartIframeSettings",
|
|
5
|
+
"description": "Iframe 图表配置信息",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": true,
|
|
8
|
+
"properties": {
|
|
9
|
+
"showTitle": {
|
|
10
|
+
"type": "boolean",
|
|
11
|
+
"description": "是否显示图表标题",
|
|
12
|
+
"default": true
|
|
13
|
+
},
|
|
14
|
+
"titleDesc": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "图表的描述信息",
|
|
17
|
+
"default": ""
|
|
18
|
+
},
|
|
19
|
+
"url": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"description": "iframe 需要填充的访问 URL"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "charts/settings/chart-log-settings-schema.json",
|
|
4
|
+
"title": "ChartLogSettings",
|
|
5
|
+
"description": "日志流图配置信息",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": true,
|
|
8
|
+
"allOf": [
|
|
9
|
+
{
|
|
10
|
+
"$ref": "common-settings-schema.json"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"properties": {
|
|
14
|
+
"isTimeInterval": {
|
|
15
|
+
"type": "boolean",
|
|
16
|
+
"description": "是否开启时间分片",
|
|
17
|
+
"default": false
|
|
18
|
+
},
|
|
19
|
+
"currentChartType": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"const": "log",
|
|
22
|
+
"readOnly": true,
|
|
23
|
+
"description": "冗余字段,在对象列表图中,固定为 log"
|
|
24
|
+
},
|
|
25
|
+
"index": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"description": "需要查询日志索引名称的合集,多个索引名称用 “,”号分割 ",
|
|
28
|
+
"examples": [
|
|
29
|
+
"index1,index2"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"inColumns": {
|
|
33
|
+
"type": "array",
|
|
34
|
+
"description": "默认固定显示的列,不能删除修改,比如时间",
|
|
35
|
+
"items": {
|
|
36
|
+
"type": "object",
|
|
37
|
+
"required": [
|
|
38
|
+
"field",
|
|
39
|
+
"headerName"
|
|
40
|
+
],
|
|
41
|
+
"properties": {
|
|
42
|
+
"field": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"description": "列的字段名称"
|
|
45
|
+
},
|
|
46
|
+
"headerName": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"description": "显示表头的名称"
|
|
49
|
+
},
|
|
50
|
+
"hide": {
|
|
51
|
+
"type": "boolean",
|
|
52
|
+
"description": "是否需要隐藏列"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"addColumns": {
|
|
58
|
+
"type": "array",
|
|
59
|
+
"description": "添加显示列",
|
|
60
|
+
"items": {
|
|
61
|
+
"type": "object",
|
|
62
|
+
"properties": {
|
|
63
|
+
"field": {
|
|
64
|
+
"type": "string",
|
|
65
|
+
"description": "需要添加列的字段名称"
|
|
66
|
+
},
|
|
67
|
+
"headerName": {
|
|
68
|
+
"type": "string",
|
|
69
|
+
"description": "显示表头的名称"
|
|
70
|
+
},
|
|
71
|
+
"hide": {
|
|
72
|
+
"type": "boolean",
|
|
73
|
+
"description": "是否需要隐藏列"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"$ref": "settings-units-schema.json"
|
|
82
|
+
}
|
|
83
|
+
]
|
|
84
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "charts/settings/chart-object-settings-schema.json",
|
|
4
|
+
"title": "ChartObjectSettings",
|
|
5
|
+
"description": "对象列表图配置信息",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": true,
|
|
8
|
+
"allOf": [
|
|
9
|
+
{
|
|
10
|
+
"$ref": "common-settings-schema.json"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"properties": {
|
|
14
|
+
"isTimeInterval": {
|
|
15
|
+
"type": "boolean",
|
|
16
|
+
"description": "是否开启时间分片",
|
|
17
|
+
"default": false
|
|
18
|
+
},
|
|
19
|
+
"currentChartType": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"const": "object",
|
|
22
|
+
"readOnly": true,
|
|
23
|
+
"description": "冗余字段,在对象列表图中,固定为 object"
|
|
24
|
+
},
|
|
25
|
+
"addColumns": {
|
|
26
|
+
"type": "array",
|
|
27
|
+
"description": "添加显示列",
|
|
28
|
+
"items": {
|
|
29
|
+
"type": "object",
|
|
30
|
+
"properties": {
|
|
31
|
+
"field": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "需要添加列的字段名称"
|
|
34
|
+
},
|
|
35
|
+
"headerName": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"description": "显示表头的名称"
|
|
38
|
+
},
|
|
39
|
+
"hide": {
|
|
40
|
+
"type": "boolean",
|
|
41
|
+
"description": "是否需要隐藏列"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"$ref": "settings-units-schema.json"
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "charts/settings/chart-picture-settings-schema.json",
|
|
4
|
+
"title": "ChartPictureSettings",
|
|
5
|
+
"description": "图片图表配置信息",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": true,
|
|
8
|
+
"properties": {
|
|
9
|
+
"showTitle": {
|
|
10
|
+
"type": "boolean",
|
|
11
|
+
"description": "是否显示图表标题",
|
|
12
|
+
"default": true
|
|
13
|
+
},
|
|
14
|
+
"titleDesc": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "图表的描述信息",
|
|
17
|
+
"default": ""
|
|
18
|
+
},
|
|
19
|
+
"url": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"description": "图片访问 URL"
|
|
22
|
+
},
|
|
23
|
+
"backgroundStyle": {
|
|
24
|
+
"type": "object",
|
|
25
|
+
"additionalProperties": true,
|
|
26
|
+
"properties": {
|
|
27
|
+
"backgroundSize": {
|
|
28
|
+
"description": "图片的平铺模式",
|
|
29
|
+
"type": "string",
|
|
30
|
+
"enum": [
|
|
31
|
+
"fill",
|
|
32
|
+
"contain",
|
|
33
|
+
"cover"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"backgroundPosition": {
|
|
37
|
+
"description": "图片是否居中显示",
|
|
38
|
+
"type": "string",
|
|
39
|
+
"enum": [
|
|
40
|
+
"center"
|
|
41
|
+
]
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "charts/settings/chart-pie-settings-schema.json",
|
|
4
|
+
"title": "ChartPieSettings",
|
|
5
|
+
"description": "饼图配置信息",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": true,
|
|
8
|
+
"allOf": [
|
|
9
|
+
{
|
|
10
|
+
"$ref": "common-settings-schema.json"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"properties": {
|
|
14
|
+
"alias": {
|
|
15
|
+
"$ref": "settings-alias-schema.json"
|
|
16
|
+
},
|
|
17
|
+
"colors": {
|
|
18
|
+
"$ref": "settings-colors-schema.json"
|
|
19
|
+
},
|
|
20
|
+
"levels": {
|
|
21
|
+
"$ref": "settings-levels-schema.json"
|
|
22
|
+
},
|
|
23
|
+
"chartType": {
|
|
24
|
+
"$ref": "settings-chart-type-schema.json"
|
|
25
|
+
},
|
|
26
|
+
"legendPostion": {
|
|
27
|
+
"$ref": "_common-settings-legend-position-schema.json"
|
|
28
|
+
},
|
|
29
|
+
"enableCombine": {
|
|
30
|
+
"type": "boolean",
|
|
31
|
+
"default": false,
|
|
32
|
+
"description": "是否开启合并数据项配置"
|
|
33
|
+
},
|
|
34
|
+
"combine": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"required": [
|
|
37
|
+
"percent",
|
|
38
|
+
"operator"
|
|
39
|
+
],
|
|
40
|
+
"description": "饼图合并数据项配置",
|
|
41
|
+
"properties": {
|
|
42
|
+
"percent": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"description": "百分比"
|
|
45
|
+
},
|
|
46
|
+
"operator": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"description": "对值的操作项",
|
|
49
|
+
"enum": [
|
|
50
|
+
"lt",
|
|
51
|
+
"lte",
|
|
52
|
+
"gt",
|
|
53
|
+
"gte"
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"mainMeasurementQueryCode": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"description": "主指标对应的code 名称,在饼图中固定为 A",
|
|
61
|
+
"const": "A"
|
|
62
|
+
},
|
|
63
|
+
"mainMeasurementSort": {
|
|
64
|
+
"type": "string",
|
|
65
|
+
"enum": [
|
|
66
|
+
"top",
|
|
67
|
+
"bottom"
|
|
68
|
+
],
|
|
69
|
+
"description": "主指标的排序方式"
|
|
70
|
+
},
|
|
71
|
+
"mainMeasurementLimit": {
|
|
72
|
+
"type": "integer",
|
|
73
|
+
"description": "主指标排序返回数据线的限制条数"
|
|
74
|
+
},
|
|
75
|
+
"isTimeInterval": {
|
|
76
|
+
"type": "boolean",
|
|
77
|
+
"description": "是否开启时间分片",
|
|
78
|
+
"default": false
|
|
79
|
+
},
|
|
80
|
+
"otherColor": {
|
|
81
|
+
"type": "string",
|
|
82
|
+
"description": "饼图没有匹配数据指标,显示的颜色块色值"
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"$ref": "settings-units-schema.json"
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "charts/settings/chart-sankey-settings-schema.json",
|
|
4
|
+
"title": "ChartSankeySettings",
|
|
5
|
+
"description": "桑基图配置信息",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": true,
|
|
8
|
+
"allOf": [
|
|
9
|
+
{
|
|
10
|
+
"$ref": "common-settings-schema.json"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"properties": {
|
|
14
|
+
"alias": {
|
|
15
|
+
"$ref": "settings-alias-schema.json"
|
|
16
|
+
},
|
|
17
|
+
"colors": {
|
|
18
|
+
"$ref": "settings-colors-schema.json"
|
|
19
|
+
},
|
|
20
|
+
"levels": {
|
|
21
|
+
"$ref": "settings-levels-schema.json"
|
|
22
|
+
},
|
|
23
|
+
"isTimeInterval": {
|
|
24
|
+
"type": "boolean",
|
|
25
|
+
"description": "是否开启时间分片",
|
|
26
|
+
"default": true
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"$ref": "settings-units-schema.json"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "charts/settings/chart-scatter-bubble-settings-schema.json",
|
|
4
|
+
"title": "ChartScatterBubbleSettings",
|
|
5
|
+
"description": "散点图气泡图配置信息",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": true,
|
|
8
|
+
"allOf": [
|
|
9
|
+
{
|
|
10
|
+
"$ref": "common-settings-schema.json"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"properties": {
|
|
14
|
+
"alias": {
|
|
15
|
+
"$ref": "settings-alias-schema.json"
|
|
16
|
+
},
|
|
17
|
+
"colors": {
|
|
18
|
+
"$ref": "settings-colors-schema.json"
|
|
19
|
+
},
|
|
20
|
+
"isTimeInterval": {
|
|
21
|
+
"type": "boolean",
|
|
22
|
+
"description": "是否开启时间分片",
|
|
23
|
+
"default": false
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"$ref": "settings-units-schema.json"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "charts/settings/chart-sequence-settings-schema.json",
|
|
4
|
+
"title": "ChartSequenceSettings",
|
|
5
|
+
"description": "时序图配置信息",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": true,
|
|
8
|
+
"allOf": [
|
|
9
|
+
{
|
|
10
|
+
"$ref": "common-settings-schema.json"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"properties": {
|
|
14
|
+
"alias": {
|
|
15
|
+
"$ref": "settings-alias-schema.json"
|
|
16
|
+
},
|
|
17
|
+
"colors": {
|
|
18
|
+
"$ref": "settings-colors-schema.json"
|
|
19
|
+
},
|
|
20
|
+
"levels": {
|
|
21
|
+
"$ref": "settings-levels-schema.json"
|
|
22
|
+
},
|
|
23
|
+
"showLine": {
|
|
24
|
+
"$ref": "_common-settings-show-line-schema.json"
|
|
25
|
+
},
|
|
26
|
+
"chartType": {
|
|
27
|
+
"$ref": "settings-chart-type-schema.json"
|
|
28
|
+
},
|
|
29
|
+
"showLabel": {
|
|
30
|
+
"$ref": "_common-settings-show-label-schema.json"
|
|
31
|
+
},
|
|
32
|
+
"stackType": {
|
|
33
|
+
"$ref": "_common-settings-stack-type-schema.json"
|
|
34
|
+
},
|
|
35
|
+
"openStack": {
|
|
36
|
+
"type": "boolean",
|
|
37
|
+
"description": "是否开启堆叠模式",
|
|
38
|
+
"default": false
|
|
39
|
+
},
|
|
40
|
+
"connectNulls": {
|
|
41
|
+
"$ref": "_common-settings-connect-null-schema.json"
|
|
42
|
+
},
|
|
43
|
+
"legendValues": {
|
|
44
|
+
"$ref": "_common-settings-legend-values-schema.json"
|
|
45
|
+
},
|
|
46
|
+
"legendPostion": {
|
|
47
|
+
"$ref": "_common-settings-legend-position-schema.json"
|
|
48
|
+
},
|
|
49
|
+
"isTimeInterval": {
|
|
50
|
+
"type": "boolean",
|
|
51
|
+
"description": "是否开启时间分片,时序图固定开启",
|
|
52
|
+
"const": true
|
|
53
|
+
},
|
|
54
|
+
"xAxisShowType": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": " 横坐标显示数据类型,时序图柱状图固定显示时间",
|
|
57
|
+
"const": "time"
|
|
58
|
+
},
|
|
59
|
+
"mainMeasurementQueryCode": {
|
|
60
|
+
"type": "string",
|
|
61
|
+
"description": "主指标对应的code 名称,在时序图中固定为 A",
|
|
62
|
+
"const": "A"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"$ref": "_common-settings-groupby-schema.json"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"$ref": "settings-units-schema.json"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"$ref": "settings-compare-schema.json"
|
|
74
|
+
}
|
|
75
|
+
]
|
|
76
|
+
}
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "charts/settings/chart-singlestat-settings-schema.json",
|
|
4
|
+
"title": "ChartSinglestatSettings",
|
|
5
|
+
"description": "概览图配置信息",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"additionalProperties": true,
|
|
8
|
+
"allOf": [
|
|
9
|
+
{
|
|
10
|
+
"$ref": "common-settings-schema.json"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"properties": {
|
|
14
|
+
"alias": {
|
|
15
|
+
"$ref": "settings-alias-schema.json"
|
|
16
|
+
},
|
|
17
|
+
"colors": {
|
|
18
|
+
"$ref": "settings-colors-schema.json"
|
|
19
|
+
},
|
|
20
|
+
"levels": {
|
|
21
|
+
"type": "array",
|
|
22
|
+
"description": "概览图规则映射对应颜色配置数据",
|
|
23
|
+
"items": {
|
|
24
|
+
"type": "object",
|
|
25
|
+
"required": [
|
|
26
|
+
"value",
|
|
27
|
+
"bgColor",
|
|
28
|
+
"operation",
|
|
29
|
+
"fontColor"
|
|
30
|
+
],
|
|
31
|
+
"properties": {
|
|
32
|
+
"value": {
|
|
33
|
+
"type": "array",
|
|
34
|
+
"description": "",
|
|
35
|
+
"items": {
|
|
36
|
+
"anyOf": [
|
|
37
|
+
{
|
|
38
|
+
"type": "string"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"type": "integer"
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"bgColor": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"description": "映射对应的背景颜色"
|
|
49
|
+
},
|
|
50
|
+
"fontColor": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"description": "映射对应的字体颜色"
|
|
53
|
+
},
|
|
54
|
+
"operation": {
|
|
55
|
+
"description": "映射指标数据值的计算规则",
|
|
56
|
+
"enum": [
|
|
57
|
+
">",
|
|
58
|
+
">=",
|
|
59
|
+
"<",
|
|
60
|
+
"<=",
|
|
61
|
+
"=",
|
|
62
|
+
"!=",
|
|
63
|
+
"between",
|
|
64
|
+
"=~",
|
|
65
|
+
"!=~",
|
|
66
|
+
"nodata"
|
|
67
|
+
]
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"mappings": {
|
|
73
|
+
"type": "array",
|
|
74
|
+
"description": "概览图规则映射对应显示指标配置",
|
|
75
|
+
"items": {
|
|
76
|
+
"type": "object",
|
|
77
|
+
"properties": {
|
|
78
|
+
"originalVal": {
|
|
79
|
+
"type": "array",
|
|
80
|
+
"description": "",
|
|
81
|
+
"items": {
|
|
82
|
+
"anyOf": [
|
|
83
|
+
{
|
|
84
|
+
"type": "string"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"type": "integer"
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"operation": {
|
|
93
|
+
"description": "映射指标数据值的计算规则",
|
|
94
|
+
"enum": [
|
|
95
|
+
">",
|
|
96
|
+
">=",
|
|
97
|
+
"<",
|
|
98
|
+
"<=",
|
|
99
|
+
"=",
|
|
100
|
+
"!=",
|
|
101
|
+
"between",
|
|
102
|
+
"=~",
|
|
103
|
+
"!=~",
|
|
104
|
+
"nodata"
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
"mappingVal": {
|
|
108
|
+
"description": "映射对应的显示文本",
|
|
109
|
+
"anyOf": [
|
|
110
|
+
{
|
|
111
|
+
"type": "string"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"type": "integer"
|
|
115
|
+
}
|
|
116
|
+
]
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"showLine": {
|
|
122
|
+
"$ref": "_common-settings-show-line-schema.json"
|
|
123
|
+
},
|
|
124
|
+
"isTimeInterval": {
|
|
125
|
+
"type": "boolean",
|
|
126
|
+
"description": "是否开启时间分片",
|
|
127
|
+
"default": false
|
|
128
|
+
},
|
|
129
|
+
"xAxisShowType": {
|
|
130
|
+
"type": "string",
|
|
131
|
+
"description": " 横坐标显示数据类型,时序图柱状图固定显示时间",
|
|
132
|
+
"const": "time"
|
|
133
|
+
},
|
|
134
|
+
"fontColor": {
|
|
135
|
+
"type": "string",
|
|
136
|
+
"description": "字体颜色的色值"
|
|
137
|
+
},
|
|
138
|
+
"bgColor": {
|
|
139
|
+
"type": "string",
|
|
140
|
+
"description": "概览图背景颜色色值"
|
|
141
|
+
},
|
|
142
|
+
"sequenceChartType": {
|
|
143
|
+
"description": "混合图开启后,显示背景图表类型,可以选择柱状图或者折线图",
|
|
144
|
+
"enum": [
|
|
145
|
+
"line",
|
|
146
|
+
"bar"
|
|
147
|
+
]
|
|
148
|
+
},
|
|
149
|
+
"showLineAxis": {
|
|
150
|
+
"type": "boolean",
|
|
151
|
+
"description": "混合图开启后,是否显示背景图表的坐标轴",
|
|
152
|
+
"default": false
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"$ref": "settings-units-schema.json"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"$ref": "settings-compare-schema.json"
|
|
161
|
+
}
|
|
162
|
+
]
|
|
163
|
+
}
|