@centreon/ui 24.5.2 → 24.5.4

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.
Files changed (615) hide show
  1. package/.storybook/main.js +82 -0
  2. package/.storybook/preview.tsx +21 -0
  3. package/README.md +14 -44
  4. package/jest.config.js +20 -0
  5. package/package.json +37 -120
  6. package/{test/setupTests.js → setupTests.js} +1 -1
  7. package/src/ActionsList/index.stories.tsx +0 -74
  8. package/src/ActionsList/index.tsx +21 -58
  9. package/src/Button/Icon/index.stories.tsx +1 -1
  10. package/src/Button/Icon/index.tsx +4 -13
  11. package/src/Button/Save/StartIcon.tsx +3 -3
  12. package/src/Button/Save/index.stories.tsx +5 -10
  13. package/src/Button/Save/index.tsx +6 -10
  14. package/src/Dialog/Confirm/index.tsx +5 -26
  15. package/src/Dialog/Duplicate/index.test.tsx +1 -1
  16. package/src/Dialog/UnsavedChanges/index.tsx +20 -21
  17. package/src/Dialog/UnsavedChanges/translatedLabels.ts +6 -4
  18. package/src/Dialog/index.tsx +4 -23
  19. package/src/FallbackPage/FallbackPage.tsx +5 -5
  20. package/src/FileDropZone/index.tsx +2 -4
  21. package/src/Form/CollapsibleGroup.tsx +5 -15
  22. package/src/Form/FormButtons.tsx +4 -2
  23. package/src/Form/Inputs/Autocomplete.tsx +1 -1
  24. package/src/Form/Inputs/ConnectedAutocomplete.tsx +1 -3
  25. package/src/Form/Inputs/Grid.tsx +2 -4
  26. package/src/Form/Inputs/Radio.tsx +5 -16
  27. package/src/Form/Inputs/Switch.tsx +1 -1
  28. package/src/Form/Inputs/Text.tsx +8 -21
  29. package/src/Form/Inputs/index.tsx +16 -34
  30. package/src/Form/Inputs/models.ts +4 -29
  31. package/src/Form/{Form.stories.tsx → index.stories.tsx} +3 -2
  32. package/src/Form/{Form.tsx → index.tsx} +16 -38
  33. package/src/Form/storiesData.tsx +3 -50
  34. package/src/Home.stories.mdx +84 -1
  35. package/src/Image/Image.tsx +1 -11
  36. package/src/Image/index.stories.tsx +2 -2
  37. package/src/Image/index.test.tsx +3 -3
  38. package/src/InputField/Search/PersistentTooltip.tsx +6 -10
  39. package/src/InputField/Search/index.tsx +2 -2
  40. package/src/InputField/Select/Autocomplete/Connected/Multi/index.test.tsx +22 -4
  41. package/src/InputField/Select/Autocomplete/Connected/index.stories.tsx +3 -0
  42. package/src/InputField/Select/Autocomplete/Connected/index.test.tsx +7 -4
  43. package/src/InputField/Select/Autocomplete/Connected/index.tsx +15 -56
  44. package/src/InputField/Select/Autocomplete/Draggable/SortableList.tsx +1 -1
  45. package/src/InputField/Select/Autocomplete/Draggable/SortableListContent.tsx +1 -1
  46. package/src/InputField/Select/Autocomplete/Draggable/index.stories.tsx +2 -0
  47. package/src/InputField/Select/Autocomplete/Draggable/index.tsx +1 -1
  48. package/src/InputField/Select/Autocomplete/Multi/index.tsx +17 -36
  49. package/src/InputField/Select/Autocomplete/index.stories.tsx +10 -1
  50. package/src/InputField/Select/Autocomplete/index.tsx +115 -131
  51. package/src/InputField/Select/IconPopover/index.tsx +3 -3
  52. package/src/InputField/Select/index.tsx +3 -17
  53. package/src/InputField/Text/index.tsx +46 -56
  54. package/src/Listing/ActionBar/index.tsx +18 -25
  55. package/src/Listing/Cell/DataCell.tsx +72 -65
  56. package/src/Listing/Cell/index.tsx +8 -88
  57. package/src/Listing/Header/{_internals/PredefinedSelectionList.tsx → PredefinedSelectionList.tsx} +1 -1
  58. package/src/Listing/Header/{Cell/ListingHeaderCell.tsx → SortableCell/Content.tsx} +83 -18
  59. package/src/Listing/Header/SortableCell/DraggableIcon.tsx +41 -0
  60. package/src/Listing/Header/{ListingHeader.tsx → index.tsx} +106 -29
  61. package/src/Listing/{Row/Row.tsx → Row.tsx} +14 -19
  62. package/src/Listing/Skeleton.tsx +11 -0
  63. package/src/Listing/index.stories.tsx +42 -180
  64. package/src/Listing/index.test.tsx +2 -2
  65. package/src/Listing/index.tsx +273 -286
  66. package/src/Listing/models.ts +0 -2
  67. package/src/Listing/tableAtoms.ts +10 -15
  68. package/src/Listing/useStyleTable.ts +9 -10
  69. package/src/ListingPage/index.stories.tsx +8 -21
  70. package/src/ListingPage/index.tsx +38 -20
  71. package/src/Logo/CentreonLogo.tsx +2 -2
  72. package/src/Module/LicensedModule/LicenseCheck/index.stories.tsx +2 -0
  73. package/src/Module/LicensedModule/LicenseCheck/index.tsx +9 -24
  74. package/src/Module/LicensedModule/index.tsx +1 -7
  75. package/src/Module/index.tsx +4 -2
  76. package/src/Panel/Memoized.tsx +1 -1
  77. package/src/Panel/Section/index.test.tsx +1 -1
  78. package/src/Panel/Section/index.tsx +1 -1
  79. package/src/Panel/index.tsx +7 -11
  80. package/src/PopoverMenu/index.tsx +9 -24
  81. package/src/RichTextEditor/ContentEditable.tsx +24 -70
  82. package/src/RichTextEditor/RichTextEditor.tsx +47 -172
  83. package/src/RichTextEditor/index.stories.tsx +0 -14
  84. package/src/RichTextEditor/plugins/AutoLinkPlugin/index.tsx +5 -53
  85. package/src/RichTextEditor/plugins/FloatingLinkEditorPlugin.tsx +16 -54
  86. package/src/RichTextEditor/plugins/ToolbarPlugin/FormatButtons.tsx +92 -31
  87. package/src/RichTextEditor/plugins/ToolbarPlugin/UndoRedoButtons.tsx +3 -13
  88. package/src/RichTextEditor/plugins/ToolbarPlugin/index.tsx +10 -35
  89. package/src/RichTextEditor/translatedLabels.ts +0 -3
  90. package/src/Snackbar/index.tsx +4 -14
  91. package/src/Snackbar/useSnackbar.tsx +1 -5
  92. package/src/SortableItems/SortableItem.tsx +2 -3
  93. package/src/SortableItems/index.tsx +7 -2
  94. package/src/ThemeProvider/index.tsx +10 -45
  95. package/src/ThemeProvider/palettes.ts +201 -422
  96. package/src/TopCounterElements/{useCloseOnLegacyPage.tsx → useCloseOnLegacyPage.ts} +4 -4
  97. package/src/Typography/{Typography.stories.tsx → index.stories.tsx} +5 -5
  98. package/src/WallpaperPage/index.stories.tsx +1 -1
  99. package/src/Wizard/ActionsBar.test.tsx +1 -1
  100. package/src/Wizard/WizardContent.tsx +3 -2
  101. package/src/Wizard/index.stories.tsx +18 -5
  102. package/src/Wizard/index.test.tsx +1 -1
  103. package/src/Wizard/index.tsx +5 -20
  104. package/src/Wizard/models.ts +0 -7
  105. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-loading-with-no-data-1-snap.png +0 -0
  106. package/src/api/QueryProvider.tsx +1 -1
  107. package/src/api/TestQueryProvider.tsx +1 -2
  108. package/src/api/buildListingEndpoint/getSearchQueryParameterValue.ts +26 -35
  109. package/src/api/buildListingEndpoint/index.test.ts +2 -2
  110. package/src/api/buildListingEndpoint/index.ts +1 -1
  111. package/src/api/buildListingEndpoint/models.ts +2 -2
  112. package/src/api/customFetch.ts +3 -22
  113. package/src/api/useFetchQuery/index.ts +37 -62
  114. package/src/api/useMutationQuery/index.test.ts +4 -4
  115. package/src/api/useMutationQuery/index.ts +22 -88
  116. package/src/api/useRequest/index.ts +6 -9
  117. package/src/index.ts +21 -32
  118. package/src/queryParameters/url/index.ts +1 -5
  119. package/src/storyshots.test.js +52 -0
  120. package/{test → src}/testRenderer.tsx +1 -1
  121. package/src/utils/getNormalizedId.ts +3 -1
  122. package/src/utils/useCopyToClipboard.ts +3 -2
  123. package/src/utils/useDebounce.ts +5 -8
  124. package/src/utils/useDeepCallback.ts +3 -1
  125. package/src/utils/useDeepMemo.ts +3 -1
  126. package/src/utils/useIntersectionObserver.ts +5 -5
  127. package/src/utils/useKeyObserver.tsx +3 -1
  128. package/src/utils/useLocaleDateTimeFormat/index.test.tsx +1 -1
  129. package/src/utils/useLocaleDateTimeFormat/index.ts +2 -4
  130. package/src/utils/useLocaleDateTimeFormat/localeFallback.test.tsx +1 -1
  131. package/src/utils/useMemoComponent.ts +1 -1
  132. package/testRunner.js +36 -0
  133. package/tsconfig.json +29 -0
  134. package/types/declarations.d.ts +9 -0
  135. package/public/README.md +0 -39
  136. package/public/mockServiceWorker.js +0 -303
  137. package/src/@assets/README.md +0 -5
  138. package/src/@assets/brand/centreon-logo-one-line-dark.svg +0 -1
  139. package/src/@assets/brand/centreon-logo-one-line-light.svg +0 -1
  140. package/src/@assets/icons/downtime.icon.svg +0 -1
  141. package/src/@types/aria-attributes.d.ts +0 -10
  142. package/src/@types/data-attributes.d.ts +0 -3
  143. package/src/@types/globals.d.ts +0 -9
  144. package/src/@types/vite-env.d.ts +0 -2
  145. package/src/ActionsList/ActionsList.styles.ts +0 -85
  146. package/src/ActionsList/models.ts +0 -8
  147. package/src/Checkbox/Checkbox.tsx +0 -109
  148. package/src/Checkbox/CheckboxGroup/index.stories.tsx +0 -41
  149. package/src/Checkbox/CheckboxGroup/index.tsx +0 -75
  150. package/src/Checkbox/index.stories.tsx +0 -39
  151. package/src/Checkbox/index.tsx +0 -2
  152. package/src/Dashboard/Dashboard.styles.ts +0 -109
  153. package/src/Dashboard/DashboardLayout.stories.tsx +0 -104
  154. package/src/Dashboard/Grid.tsx +0 -70
  155. package/src/Dashboard/Item.tsx +0 -100
  156. package/src/Dashboard/Layout.tsx +0 -79
  157. package/src/Dashboard/index.tsx +0 -9
  158. package/src/Dashboard/utils.ts +0 -28
  159. package/src/Form/Form.cypress.spec.tsx +0 -133
  160. package/src/Form/Form.styles.ts +0 -11
  161. package/src/Form/Inputs/Checkbox.tsx +0 -57
  162. package/src/Form/Inputs/CheckboxGroup.tsx +0 -76
  163. package/src/Form/Inputs/List/Content.tsx +0 -62
  164. package/src/Form/Inputs/List/List.styles.ts +0 -29
  165. package/src/Form/Inputs/List/List.tsx +0 -58
  166. package/src/Form/Inputs/List/useList.ts +0 -81
  167. package/src/Form/index.ts +0 -1
  168. package/src/Graph/BarStack/BarStack.cypress.spec.tsx +0 -139
  169. package/src/Graph/BarStack/BarStack.stories.tsx +0 -123
  170. package/src/Graph/BarStack/BarStack.styles.ts +0 -37
  171. package/src/Graph/BarStack/BarStack.tsx +0 -14
  172. package/src/Graph/BarStack/ResponsiveBarStack.tsx +0 -209
  173. package/src/Graph/BarStack/index.ts +0 -1
  174. package/src/Graph/BarStack/models.ts +0 -19
  175. package/src/Graph/BarStack/useResponsiveBarStack.ts +0 -131
  176. package/src/Graph/Gauge/AnimatedPie.tsx +0 -102
  177. package/src/Graph/Gauge/Gauge.cypress.spec.tsx +0 -102
  178. package/src/Graph/Gauge/Gauge.stories.tsx +0 -159
  179. package/src/Graph/Gauge/Gauge.tsx +0 -41
  180. package/src/Graph/Gauge/PieData.tsx +0 -63
  181. package/src/Graph/Gauge/ResponsiveGauge.tsx +0 -148
  182. package/src/Graph/Gauge/Thresholds.tsx +0 -117
  183. package/src/Graph/Gauge/index.ts +0 -1
  184. package/src/Graph/Gauge/models.ts +0 -20
  185. package/src/Graph/HeatMap/HeatMap.cypress.spec.tsx +0 -145
  186. package/src/Graph/HeatMap/HeatMap.stories.tsx +0 -80
  187. package/src/Graph/HeatMap/HeatMap.styles.tsx +0 -29
  188. package/src/Graph/HeatMap/HeatMap.tsx +0 -12
  189. package/src/Graph/HeatMap/HeatMapData.json +0 -137
  190. package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +0 -104
  191. package/src/Graph/HeatMap/index.ts +0 -1
  192. package/src/Graph/HeatMap/model.ts +0 -33
  193. package/src/Graph/Legend/Legend.tsx +0 -21
  194. package/src/Graph/Legend/index.ts +0 -1
  195. package/src/Graph/Legend/models.ts +0 -11
  196. package/src/Graph/LineChart/BasicComponents/Axes/UnitLabel.tsx +0 -20
  197. package/src/Graph/LineChart/BasicComponents/Axes/index.tsx +0 -88
  198. package/src/Graph/LineChart/BasicComponents/Axes/models.ts +0 -26
  199. package/src/Graph/LineChart/BasicComponents/Axes/useAxisY.ts +0 -100
  200. package/src/Graph/LineChart/BasicComponents/Grids/index.tsx +0 -20
  201. package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/index.tsx +0 -99
  202. package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/useRegularLines.ts +0 -15
  203. package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/index.tsx +0 -81
  204. package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/useStackedLines.ts +0 -39
  205. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/BasicThreshold.tsx +0 -53
  206. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/Circle.tsx +0 -43
  207. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithPatternLines.tsx +0 -78
  208. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithVariation.tsx +0 -63
  209. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/helpers/index.ts +0 -69
  210. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/index.tsx +0 -142
  211. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/models.ts +0 -105
  212. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useCoordinateCircle.ts +0 -46
  213. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useScaleThreshold.ts +0 -171
  214. package/src/Graph/LineChart/BasicComponents/Lines/index.tsx +0 -189
  215. package/src/Graph/LineChart/BasicComponents/Lines/models.ts +0 -45
  216. package/src/Graph/LineChart/BasicComponents/ThresholdLine.tsx +0 -66
  217. package/src/Graph/LineChart/BasicComponents/Thresholds.tsx +0 -77
  218. package/src/Graph/LineChart/BasicComponents/useFilterLines.ts +0 -60
  219. package/src/Graph/LineChart/Header/index.tsx +0 -37
  220. package/src/Graph/LineChart/Icons/Downtime.tsx +0 -9
  221. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/GuidingLines.tsx +0 -45
  222. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/RegularAnchorPoint.tsx +0 -66
  223. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/StackedAnchorPoint.tsx +0 -76
  224. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/index.tsx +0 -20
  225. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/models.ts +0 -62
  226. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTickGraph.ts +0 -92
  227. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Area.tsx +0 -114
  228. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Line.tsx +0 -103
  229. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/index.tsx +0 -81
  230. package/src/Graph/LineChart/InteractiveComponents/Annotations/Area/Downtime.tsx +0 -27
  231. package/src/Graph/LineChart/InteractiveComponents/Annotations/EventAnnotations.tsx +0 -61
  232. package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Acknowledgement.tsx +0 -27
  233. package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Comments.tsx +0 -25
  234. package/src/Graph/LineChart/InteractiveComponents/Annotations/annotationsAtoms.ts +0 -183
  235. package/src/Graph/LineChart/InteractiveComponents/Annotations/index.tsx +0 -49
  236. package/src/Graph/LineChart/InteractiveComponents/Annotations/models.ts +0 -25
  237. package/src/Graph/LineChart/InteractiveComponents/Annotations/useAnnotation.ts +0 -56
  238. package/src/Graph/LineChart/InteractiveComponents/Bar.tsx +0 -21
  239. package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/GraphValueTooltip.tsx +0 -68
  240. package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltip.ts +0 -27
  241. package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltipStyles.ts +0 -31
  242. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftIcon.tsx +0 -62
  243. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftZone.tsx +0 -74
  244. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/index.tsx +0 -85
  245. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/models.ts +0 -12
  246. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/useTimeShiftZones.ts +0 -72
  247. package/src/Graph/LineChart/InteractiveComponents/Tooltip/index.tsx +0 -59
  248. package/src/Graph/LineChart/InteractiveComponents/Tooltip/models.ts +0 -9
  249. package/src/Graph/LineChart/InteractiveComponents/Tooltip/useGraphTooltip.ts +0 -67
  250. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/index.tsx +0 -38
  251. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/models.ts +0 -9
  252. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/useZoomPreview.ts +0 -107
  253. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/zoomPreviewAtoms.ts +0 -3
  254. package/src/Graph/LineChart/InteractiveComponents/index.tsx +0 -283
  255. package/src/Graph/LineChart/InteractiveComponents/interactionWithGraphAtoms.ts +0 -32
  256. package/src/Graph/LineChart/Legend/Legend.styles.ts +0 -113
  257. package/src/Graph/LineChart/Legend/LegendContent.tsx +0 -33
  258. package/src/Graph/LineChart/Legend/LegendHeader.tsx +0 -81
  259. package/src/Graph/LineChart/Legend/index.tsx +0 -163
  260. package/src/Graph/LineChart/Legend/models.ts +0 -16
  261. package/src/Graph/LineChart/Legend/useLegend.ts +0 -104
  262. package/src/Graph/LineChart/LineChart.cypress.spec.tsx +0 -91
  263. package/src/Graph/LineChart/LineChart.styles.ts +0 -53
  264. package/src/Graph/LineChart/LineChart.tsx +0 -307
  265. package/src/Graph/LineChart/LoadingSkeleton.tsx +0 -44
  266. package/src/Graph/LineChart/common/index.ts +0 -35
  267. package/src/Graph/LineChart/graphAtoms.ts +0 -3
  268. package/src/Graph/LineChart/helpers/doc.ts +0 -563
  269. package/src/Graph/LineChart/helpers/index.ts +0 -63
  270. package/src/Graph/LineChart/index.stories.tsx +0 -480
  271. package/src/Graph/LineChart/index.tsx +0 -114
  272. package/src/Graph/LineChart/mockedData/annotationData.json +0 -326
  273. package/src/Graph/LineChart/mockedData/exclusionPeriodFirstPeriod.json +0 -588
  274. package/src/Graph/LineChart/mockedData/exclusionPeriodSecondPeriod.json +0 -588
  275. package/src/Graph/LineChart/mockedData/exclusionPeriodThirdPeriod.json +0 -581
  276. package/src/Graph/LineChart/mockedData/lastDay.json +0 -1326
  277. package/src/Graph/LineChart/mockedData/lastDayAreaStack.json +0 -3106
  278. package/src/Graph/LineChart/mockedData/lastDayForward.json +0 -1338
  279. package/src/Graph/LineChart/mockedData/lastDayThreshold.json +0 -2352
  280. package/src/Graph/LineChart/mockedData/lastDayWithIncompleteValues.json +0 -1320
  281. package/src/Graph/LineChart/mockedData/lastDayWithNullValues.json +0 -1314
  282. package/src/Graph/LineChart/mockedData/lastMonth.json +0 -1674
  283. package/src/Graph/LineChart/mockedData/lastWeek.json +0 -2202
  284. package/src/Graph/LineChart/mockedData/zoomPreview.json +0 -742
  285. package/src/Graph/LineChart/models.ts +0 -157
  286. package/src/Graph/LineChart/translatedLabels.ts +0 -9
  287. package/src/Graph/LineChart/useLineChartData.ts +0 -49
  288. package/src/Graph/LineChart/useLineChartIntersection.ts +0 -36
  289. package/src/Graph/PieChart/PieChart.cypress.spec.tsx +0 -154
  290. package/src/Graph/PieChart/PieChart.stories.tsx +0 -194
  291. package/src/Graph/PieChart/PieChart.styles.ts +0 -39
  292. package/src/Graph/PieChart/PieChart.tsx +0 -14
  293. package/src/Graph/PieChart/ResponsivePie.tsx +0 -243
  294. package/src/Graph/PieChart/index.ts +0 -1
  295. package/src/Graph/PieChart/models.ts +0 -19
  296. package/src/Graph/PieChart/useResponsivePie.ts +0 -81
  297. package/src/Graph/SingleBar/ResponsiveSingleBar.tsx +0 -197
  298. package/src/Graph/SingleBar/SingleBar.cypress.spec.tsx +0 -121
  299. package/src/Graph/SingleBar/SingleBar.stories.tsx +0 -204
  300. package/src/Graph/SingleBar/SingleBar.tsx +0 -25
  301. package/src/Graph/SingleBar/ThresholdLine.tsx +0 -103
  302. package/src/Graph/SingleBar/Thresholds.tsx +0 -50
  303. package/src/Graph/SingleBar/index.ts +0 -1
  304. package/src/Graph/SingleBar/models.ts +0 -10
  305. package/src/Graph/Text/Text.cypress.spec.tsx +0 -101
  306. package/src/Graph/Text/Text.stories.tsx +0 -123
  307. package/src/Graph/Text/Text.styles.ts +0 -28
  308. package/src/Graph/Text/Text.tsx +0 -96
  309. package/src/Graph/Text/index.ts +0 -1
  310. package/src/Graph/Tree/DescendantNodes.tsx +0 -88
  311. package/src/Graph/Tree/Links.tsx +0 -64
  312. package/src/Graph/Tree/StandaloneTree.tsx +0 -32
  313. package/src/Graph/Tree/Tree.cypress.spec.tsx +0 -171
  314. package/src/Graph/Tree/Tree.stories.tsx +0 -144
  315. package/src/Graph/Tree/Tree.tsx +0 -116
  316. package/src/Graph/Tree/constants.ts +0 -2
  317. package/src/Graph/Tree/index.ts +0 -4
  318. package/src/Graph/Tree/models.ts +0 -52
  319. package/src/Graph/Tree/stories/contents.tsx +0 -164
  320. package/src/Graph/Tree/stories/datas.ts +0 -305
  321. package/src/Graph/Tree/utils.ts +0 -49
  322. package/src/Graph/common/margins.ts +0 -1
  323. package/src/Graph/common/models.ts +0 -19
  324. package/src/Graph/common/testUtils.ts +0 -71
  325. package/src/Graph/common/timeSeries/index.test.ts +0 -624
  326. package/src/Graph/common/timeSeries/index.ts +0 -664
  327. package/src/Graph/common/timeSeries/models.ts +0 -129
  328. package/src/Graph/common/utils.ts +0 -94
  329. package/src/Graph/index.ts +0 -9
  330. package/src/InputField/Number/Number.cypress.spec.tsx +0 -85
  331. package/src/InputField/Number/Number.stories.tsx +0 -66
  332. package/src/InputField/Number/Number.tsx +0 -74
  333. package/src/InputField/Select/Autocomplete/Connected/Multi/MultiConnectedAutocompleteField.cypress.spec.tsx +0 -127
  334. package/src/InputField/Select/Autocomplete/Connected/Multi/utils/index.ts +0 -22
  335. package/src/Listing/Cell/DataCell.styles.ts +0 -27
  336. package/src/Listing/EmptyResult/EmptyResult.tsx +0 -13
  337. package/src/Listing/Header/Cell/ListingHeaderCell.styles.ts +0 -71
  338. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.styles.ts +0 -26
  339. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.tsx +0 -70
  340. package/src/Listing/Header/ListingHeader.styles.ts +0 -16
  341. package/src/Listing/Header/_internals/DraggableIconButton.tsx +0 -35
  342. package/src/Listing/Header/index.ts +0 -1
  343. package/src/Listing/Listing.cypress.spec.tsx +0 -307
  344. package/src/Listing/Listing.styles.ts +0 -78
  345. package/src/Listing/ListingDocs.mdx +0 -61
  346. package/src/Listing/Row/EmptyRow.styles.ts +0 -14
  347. package/src/Listing/Row/EmptyRow.tsx +0 -30
  348. package/src/Listing/Row/SkeletonLoaderRows.tsx +0 -23
  349. package/src/Module/Module.cypress.spec.tsx +0 -129
  350. package/src/ParentSize/ParentSize.tsx +0 -24
  351. package/src/ParentSize/index.ts +0 -1
  352. package/src/RichTextEditor/RichTextEditor.cypress.spec.tsx +0 -408
  353. package/src/RichTextEditor/plugins/ToolbarPlugin/AlignPicker.tsx +0 -116
  354. package/src/RichTextEditor/plugins/ToolbarPlugin/BlockButtons.tsx +0 -155
  355. package/src/RichTextEditor/plugins/ToolbarPlugin/LinkButton.tsx +0 -106
  356. package/src/RichTextEditor/plugins/ToolbarPlugin/ListButton.tsx +0 -155
  357. package/src/RichTextEditor/plugins/ToolbarPlugin/MacrosButton.tsx +0 -75
  358. package/src/RichTextEditor/plugins/ToolbarPlugin/ToolbarPlugin.styles.ts +0 -32
  359. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.styles.ts +0 -50
  360. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.tsx +0 -95
  361. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/ErrorText.tsx +0 -14
  362. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/PickersStartEndDate.tsx +0 -171
  363. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/index.tsx +0 -76
  364. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/models.ts +0 -59
  365. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/usePickersStartEndDate.ts +0 -82
  366. package/src/TimePeriods/CustomTimePeriod/SimpleCustomTimePeriod.tsx +0 -28
  367. package/src/TimePeriods/CustomTimePeriod/index.tsx +0 -66
  368. package/src/TimePeriods/DateTimePickerInput.tsx +0 -86
  369. package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +0 -68
  370. package/src/TimePeriods/SelectedTimePeriod.tsx +0 -102
  371. package/src/TimePeriods/TimePeriods.cypress.spec.tsx +0 -486
  372. package/src/TimePeriods/TimePeriods.styles.ts +0 -22
  373. package/src/TimePeriods/helpers/index.ts +0 -26
  374. package/src/TimePeriods/index.stories.tsx +0 -121
  375. package/src/TimePeriods/index.tsx +0 -79
  376. package/src/TimePeriods/mockedData.ts +0 -12
  377. package/src/TimePeriods/models.ts +0 -97
  378. package/src/TimePeriods/timePeriodsAtoms.ts +0 -102
  379. package/src/TimePeriods/translatedLabels.ts +0 -9
  380. package/src/TimePeriods/useSortTimePeriods.ts +0 -31
  381. package/src/TimePeriods/useTimePeriod.ts +0 -49
  382. package/src/Typography/EllipsisTypography.tsx +0 -18
  383. package/src/Typography/FluidTypography/FluidTypography.cypress.spec.tsx +0 -27
  384. package/src/Typography/FluidTypography/index.stories.tsx +0 -63
  385. package/src/Typography/FluidTypography/index.tsx +0 -44
  386. package/src/Typography/Subtitle.tsx +0 -55
  387. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-normal-1-snap.png +0 -0
  388. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-item-header-1-snap.png +0 -0
  389. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-many-panels-1-snap.png +0 -0
  390. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-basic-1-snap.png +0 -0
  391. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-20-px-height-1-snap.png +0 -0
  392. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-200-px-width-1-snap.png +0 -0
  393. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-heading-5-variant-1-snap.png +0 -0
  394. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-long-text-1-snap.png +0 -0
  395. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-as-empty-state-1-snap.png +0 -0
  396. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-with-editable-and-sortable-columns-1-snap.png +0 -0
  397. package/src/api/useGraphQuery/index.ts +0 -187
  398. package/src/api/useGraphQuery/models.ts +0 -20
  399. package/src/base/tokens/README.md +0 -3
  400. package/src/base/tokens/source/$metadata.json +0 -5
  401. package/src/base/tokens/source/base.json +0 -142
  402. package/src/base/tokens/themes/base.tokens.d.ts +0 -38
  403. package/src/base/tokens/themes/base.tokens.json +0 -695
  404. package/src/base/tokens/themes/base.tokens.ts +0 -38
  405. package/src/base/tokens/themes/ui-dark.tokens.d.ts +0 -38
  406. package/src/base/tokens/themes/ui-dark.tokens.json +0 -695
  407. package/src/base/tokens/themes/ui-dark.tokens.ts +0 -38
  408. package/src/base/tokens/themes/ui-light.tokens.d.ts +0 -38
  409. package/src/base/tokens/themes/ui-light.tokens.json +0 -695
  410. package/src/base/tokens/themes/ui-light.tokens.ts +0 -38
  411. package/src/components/Avatar/Avatar.stories.tsx +0 -23
  412. package/src/components/Avatar/Avatar.styles.ts +0 -11
  413. package/src/components/Avatar/Avatar.tsx +0 -32
  414. package/src/components/Avatar/index.ts +0 -1
  415. package/src/components/Button/Button.stories.tsx +0 -34
  416. package/src/components/Button/Button.styles.ts +0 -44
  417. package/src/components/Button/Button.tsx +0 -78
  418. package/src/components/Button/Icon/IconButton.stories.tsx +0 -18
  419. package/src/components/Button/Icon/IconButton.styles.ts +0 -14
  420. package/src/components/Button/Icon/IconButton.tsx +0 -62
  421. package/src/components/Button/Icon/index.tsx +0 -1
  422. package/src/components/Button/index.ts +0 -2
  423. package/src/components/CollapsibleItem/CollapsibleItem.cypress.spec.tsx +0 -76
  424. package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +0 -51
  425. package/src/components/CollapsibleItem/CollapsibleItem.tsx +0 -76
  426. package/src/components/CollapsibleItem/index.ts +0 -1
  427. package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +0 -38
  428. package/src/components/DataTable/DataListing.tsx +0 -6
  429. package/src/components/DataTable/DataTable.cypress.spec.tsx +0 -174
  430. package/src/components/DataTable/DataTable.stories.tsx +0 -91
  431. package/src/components/DataTable/DataTable.styles.ts +0 -30
  432. package/src/components/DataTable/DataTable.tsx +0 -35
  433. package/src/components/DataTable/EmptyState/DataTableEmptyState.stories.tsx +0 -21
  434. package/src/components/DataTable/EmptyState/DataTableEmptyState.styles.ts +0 -26
  435. package/src/components/DataTable/EmptyState/DataTableEmptyState.tsx +0 -53
  436. package/src/components/DataTable/Item/DataTableItem.stories.tsx +0 -25
  437. package/src/components/DataTable/Item/DataTableItem.styles.ts +0 -38
  438. package/src/components/DataTable/Item/DataTableItem.tsx +0 -67
  439. package/src/components/DataTable/Item/DataTableItemSkeleton.tsx +0 -13
  440. package/src/components/DataTable/index.ts +0 -12
  441. package/src/components/Form/AccessRights/AccessRights.cypress.spec.tsx +0 -373
  442. package/src/components/Form/AccessRights/AccessRights.stories.tsx +0 -119
  443. package/src/components/Form/AccessRights/AccessRights.styles.ts +0 -10
  444. package/src/components/Form/AccessRights/AccessRights.tsx +0 -60
  445. package/src/components/Form/AccessRights/Actions/Actions.styles.ts +0 -14
  446. package/src/components/Form/AccessRights/Actions/Actions.tsx +0 -81
  447. package/src/components/Form/AccessRights/Actions/useActions.ts +0 -79
  448. package/src/components/Form/AccessRights/List/Item.tsx +0 -90
  449. package/src/components/Form/AccessRights/List/List.styles.tsx +0 -45
  450. package/src/components/Form/AccessRights/List/List.tsx +0 -52
  451. package/src/components/Form/AccessRights/List/ListItemSkeleton.tsx +0 -18
  452. package/src/components/Form/AccessRights/List/ListSkeleton.tsx +0 -22
  453. package/src/components/Form/AccessRights/List/RemoveAccessRight.tsx +0 -38
  454. package/src/components/Form/AccessRights/List/StateChip.tsx +0 -28
  455. package/src/components/Form/AccessRights/List/useItem.ts +0 -64
  456. package/src/components/Form/AccessRights/Provider.tsx +0 -15
  457. package/src/components/Form/AccessRights/ShareInput/ContactSwitch.tsx +0 -50
  458. package/src/components/Form/AccessRights/ShareInput/ShareInput.styles.ts +0 -17
  459. package/src/components/Form/AccessRights/ShareInput/ShareInput.tsx +0 -78
  460. package/src/components/Form/AccessRights/ShareInput/useShareInput.tsx +0 -113
  461. package/src/components/Form/AccessRights/Stats/Stats.tsx +0 -36
  462. package/src/components/Form/AccessRights/atoms.ts +0 -97
  463. package/src/components/Form/AccessRights/common/RoleSelectField.styles.tsx +0 -7
  464. package/src/components/Form/AccessRights/common/RoleSelectField.tsx +0 -45
  465. package/src/components/Form/AccessRights/models.ts +0 -55
  466. package/src/components/Form/AccessRights/storiesData.ts +0 -222
  467. package/src/components/Form/AccessRights/useAccessRightsInitValues.ts +0 -51
  468. package/src/components/Form/Dashboard/Dashboard.resource.ts +0 -9
  469. package/src/components/Form/Dashboard/DashboardDuplicationForm.tsx +0 -85
  470. package/src/components/Form/Dashboard/DashboardForm.stories.ts +0 -39
  471. package/src/components/Form/Dashboard/DashboardForm.styles.ts +0 -21
  472. package/src/components/Form/Dashboard/DashboardForm.tsx +0 -137
  473. package/src/components/Form/Dashboard/GlobalRefreshFieldOption.tsx +0 -59
  474. package/src/components/Form/Dashboard/index.ts +0 -3
  475. package/src/components/Form/Dashboard/translatedLabels.ts +0 -9
  476. package/src/components/Form/Form.models.ts +0 -1
  477. package/src/components/Form/Form.resource.ts +0 -1
  478. package/src/components/Form/Form.styles.ts +0 -17
  479. package/src/components/Form/FormActions.tsx +0 -62
  480. package/src/components/Form/index.ts +0 -4
  481. package/src/components/Header/PageHeader/PageHeader.stories.tsx +0 -97
  482. package/src/components/Header/PageHeader/PageHeader.styles.ts +0 -126
  483. package/src/components/Header/PageHeader/PageHeader.tsx +0 -15
  484. package/src/components/Header/PageHeader/PageHeaderActions.tsx +0 -17
  485. package/src/components/Header/PageHeader/PageHeaderMain.tsx +0 -15
  486. package/src/components/Header/PageHeader/PageHeaderMenu.tsx +0 -15
  487. package/src/components/Header/PageHeader/PageHeaderMessage.tsx +0 -32
  488. package/src/components/Header/PageHeader/PageHeaderTitle.tsx +0 -47
  489. package/src/components/Header/PageHeader/index.ts +0 -14
  490. package/src/components/Header/index.ts +0 -1
  491. package/src/components/Icon/Icon.styles.ts +0 -0
  492. package/src/components/Icon/Icon.tsx +0 -2
  493. package/src/components/Icon/index.ts +0 -0
  494. package/src/components/Inputs/Switch/Switch.stories.tsx +0 -22
  495. package/src/components/Inputs/Switch/Switch.styles.ts +0 -13
  496. package/src/components/Inputs/Switch/Switch.tsx +0 -18
  497. package/src/components/Inputs/index.ts +0 -1
  498. package/src/components/ItemComposition/Item.tsx +0 -41
  499. package/src/components/ItemComposition/ItemComposition.cypress.spec.tsx +0 -113
  500. package/src/components/ItemComposition/ItemComposition.stories.tsx +0 -92
  501. package/src/components/ItemComposition/ItemComposition.styles.ts +0 -62
  502. package/src/components/ItemComposition/ItemComposition.tsx +0 -71
  503. package/src/components/ItemComposition/index.ts +0 -6
  504. package/src/components/Layout/AreaIndicator.styles.ts +0 -33
  505. package/src/components/Layout/AreaIndicator.tsx +0 -35
  506. package/src/components/Layout/PageLayout/PageLayout.stories.tsx +0 -81
  507. package/src/components/Layout/PageLayout/PageLayout.styles.ts +0 -41
  508. package/src/components/Layout/PageLayout/PageLayout.tsx +0 -21
  509. package/src/components/Layout/PageLayout/PageLayoutActions.tsx +0 -25
  510. package/src/components/Layout/PageLayout/PageLayoutBody.tsx +0 -25
  511. package/src/components/Layout/PageLayout/PageLayoutHeader.tsx +0 -19
  512. package/src/components/Layout/PageLayout/PageQuickAccess.tsx +0 -76
  513. package/src/components/Layout/PageLayout/index.ts +0 -12
  514. package/src/components/Layout/PageLayout.cypress.spec.tsx +0 -66
  515. package/src/components/Layout/index.ts +0 -1
  516. package/src/components/List/Item/Avatar.tsx +0 -21
  517. package/src/components/List/Item/AvatarSkeleton.tsx +0 -17
  518. package/src/components/List/Item/ListItem.stories.tsx +0 -41
  519. package/src/components/List/Item/ListItem.styles.ts +0 -63
  520. package/src/components/List/Item/ListItem.tsx +0 -34
  521. package/src/components/List/Item/Text.tsx +0 -27
  522. package/src/components/List/Item/TextSkeleton.tsx +0 -22
  523. package/src/components/List/Item/index.ts +0 -14
  524. package/src/components/List/List.stories.tsx +0 -70
  525. package/src/components/List/List.styles.ts +0 -8
  526. package/src/components/List/List.tsx +0 -19
  527. package/src/components/List/index.ts +0 -6
  528. package/src/components/Menu/Button/MenuButton.stories.tsx +0 -16
  529. package/src/components/Menu/Button/MenuButton.styles.ts +0 -27
  530. package/src/components/Menu/Button/MenuButton.tsx +0 -67
  531. package/src/components/Menu/Button/index.ts +0 -1
  532. package/src/components/Menu/Menu.stories.tsx +0 -71
  533. package/src/components/Menu/Menu.styles.ts +0 -68
  534. package/src/components/Menu/Menu.tsx +0 -25
  535. package/src/components/Menu/MenuDivider.tsx +0 -13
  536. package/src/components/Menu/MenuItem.tsx +0 -38
  537. package/src/components/Menu/MenuItems.tsx +0 -36
  538. package/src/components/Menu/index.ts +0 -12
  539. package/src/components/Menu/useMenu.tsx +0 -79
  540. package/src/components/Modal/ConfirmationModal/ConfirmationModal.cypress.spec.tsx +0 -168
  541. package/src/components/Modal/ConfirmationModal/ConfirmationModal.stories.tsx +0 -62
  542. package/src/components/Modal/ConfirmationModal/ConfirmationModal.tsx +0 -87
  543. package/src/components/Modal/Modal.stories.tsx +0 -142
  544. package/src/components/Modal/Modal.styles.ts +0 -96
  545. package/src/components/Modal/Modal.tsx +0 -79
  546. package/src/components/Modal/ModalActions.tsx +0 -64
  547. package/src/components/Modal/ModalBody.tsx +0 -15
  548. package/src/components/Modal/ModalHeader.tsx +0 -21
  549. package/src/components/Modal/index.ts +0 -14
  550. package/src/components/README.md +0 -3
  551. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +0 -62
  552. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.styles.tsx +0 -22
  553. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +0 -68
  554. package/src/components/Tooltip/ConfirmationTooltip/TooltipContent.tsx +0 -31
  555. package/src/components/Tooltip/ConfirmationTooltip/index.ts +0 -1
  556. package/src/components/Tooltip/ConfirmationTooltip/models.ts +0 -18
  557. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.stories.tsx +0 -70
  558. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.styles.ts +0 -5
  559. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.tsx +0 -115
  560. package/src/components/Tooltip/TextOverflowTooltip/index.tsx +0 -1
  561. package/src/components/Tooltip/Tooltip.stories.tsx +0 -41
  562. package/src/components/Tooltip/Tooltip.tsx +0 -57
  563. package/src/components/Tooltip/index.ts +0 -2
  564. package/src/components/Zoom/Minimap.tsx +0 -127
  565. package/src/components/Zoom/Zoom.cypress.spec.tsx +0 -246
  566. package/src/components/Zoom/Zoom.stories.tsx +0 -115
  567. package/src/components/Zoom/Zoom.styles.tsx +0 -68
  568. package/src/components/Zoom/Zoom.tsx +0 -61
  569. package/src/components/Zoom/ZoomContent.tsx +0 -167
  570. package/src/components/Zoom/constants.ts +0 -2
  571. package/src/components/Zoom/localPoint.ts +0 -51
  572. package/src/components/Zoom/models.ts +0 -25
  573. package/src/components/Zoom/useMinimap.ts +0 -156
  574. package/src/components/Zoom/useZoom.ts +0 -70
  575. package/src/components/Zoom/utils.ts +0 -55
  576. package/src/components/index.ts +0 -14
  577. package/src/styles/tokens/themes/_ui-dark.tokens.json +0 -695
  578. package/src/styles/tokens/themes/_ui-light.tokens.json +0 -695
  579. package/src/utils/centreonBaseURL.ts +0 -4
  580. package/src/utils/docsURL.ts +0 -31
  581. package/src/utils/index.ts +0 -24
  582. package/src/utils/panelSize.ts +0 -15
  583. package/src/utils/sanitizedHTML.ts +0 -18
  584. package/src/utils/translatedLabel.ts +0 -2
  585. package/src/utils/useFullscreen/Fullscreen.cypress.spec.tsx +0 -130
  586. package/src/utils/useFullscreen/atoms.ts +0 -3
  587. package/src/utils/useFullscreen/index.ts +0 -2
  588. package/src/utils/useFullscreen/translatedLabels.ts +0 -1
  589. package/src/utils/useFullscreen/useFullscreen.ts +0 -73
  590. package/src/utils/useFullscreen/useFullscreenListener.ts +0 -62
  591. package/src/utils/useInfiniteScrollListing.ts +0 -124
  592. package/src/utils/useLicenseExpirationWarning.test.tsx +0 -148
  593. package/src/utils/useLicenseExpirationWarning.ts +0 -52
  594. package/src/utils/usePluralizedTranslation.ts +0 -21
  595. package/src/utils/useRefreshInterval.ts +0 -39
  596. package/src/utils/useResizeObserver.ts +0 -6
  597. package/src/utils/useThresholds.ts +0 -0
  598. /package/{public/brand → assets}/centreon-logo-one-line-dark.svg +0 -0
  599. /package/{public/brand → assets}/centreon-logo-one-line-light.svg +0 -0
  600. /package/{src/@assets/images → assets}/not-authorized-template-background-dark.svg +0 -0
  601. /package/{src/@assets/images → assets}/not-authorized-template-background-light.svg +0 -0
  602. /package/{public/fonts → fonts/fonts-generated}/roboto-bold-webfont.ttf +0 -0
  603. /package/{public/fonts → fonts/fonts-generated}/roboto-bold-webfont.woff +0 -0
  604. /package/{public/fonts → fonts/fonts-generated}/roboto-bold-webfont.woff2 +0 -0
  605. /package/{public/fonts → fonts/fonts-generated}/roboto-light-webfont.ttf +0 -0
  606. /package/{public/fonts → fonts/fonts-generated}/roboto-light-webfont.woff +0 -0
  607. /package/{public/fonts → fonts/fonts-generated}/roboto-light-webfont.woff2 +0 -0
  608. /package/{public/fonts → fonts/fonts-generated}/roboto-medium-webfont.ttf +0 -0
  609. /package/{public/fonts → fonts/fonts-generated}/roboto-medium-webfont.woff +0 -0
  610. /package/{public/fonts → fonts/fonts-generated}/roboto-medium-webfont.woff2 +0 -0
  611. /package/{public/fonts → fonts/fonts-generated}/roboto-regular-webfont.ttf +0 -0
  612. /package/{public/fonts → fonts/fonts-generated}/roboto-regular-webfont.woff +0 -0
  613. /package/{public/fonts → fonts/fonts-generated}/roboto-regular-webfont.woff2 +0 -0
  614. /package/src/Listing/Header/{_internals/Label.tsx → Label.tsx} +0 -0
  615. /package/src/Typography/{story.utils.tsx → index.tsx} +0 -0
@@ -1,2352 +0,0 @@
1
- {
2
- "global": {
3
- "title": "anomaly-nbr-connect graph on fw-brasilia",
4
- "start": "2023-06-14T17:31:46+02:00",
5
- "end": "2023-06-15T17:31:46+02:00",
6
- "vertical-label": "Value",
7
- "base": 1000,
8
- "width": 550,
9
- "height": 140,
10
- "scaled": 1,
11
- "multiple_services": false
12
- },
13
- "metrics": [
14
- {
15
- "index_id": 152032,
16
- "metric_id": 15165,
17
- "metric": "connection",
18
- "metric_legend": "connection",
19
- "unit": "",
20
- "hidden": 0,
21
- "min": null,
22
- "max": null,
23
- "virtual": 0,
24
- "ds_data": {
25
- "ds_min": "1",
26
- "ds_max": "1",
27
- "ds_minmax_int": "0",
28
- "ds_last": "1",
29
- "ds_average": "1",
30
- "ds_total": "0",
31
- "ds_tickness": 1,
32
- "ds_color_line_mode": "1",
33
- "ds_color_line": "#993366"
34
- },
35
- "legend": "connection",
36
- "stack": 0,
37
- "warn": null,
38
- "warn_low": null,
39
- "crit": null,
40
- "crit_low": null,
41
- "ds_color_area_warn": "#ff9a13",
42
- "ds_color_area_crit": "#e00b3d",
43
- "ds_order": 0,
44
- "data": [
45
- 120.88,
46
- 119.98333333,
47
- 161.63,
48
- 136.94666667,
49
- 152.69666667,
50
- 52.246666667,
51
- 16.236666667,
52
- 14.796666667,
53
- 20.576666667,
54
- 24.39,
55
- 26.593333333,
56
- 24.61,
57
- 24.796666667,
58
- 13.846666667,
59
- 25.34,
60
- 28.203333333,
61
- 17.643333333,
62
- 25.356666667,
63
- 17.643333333,
64
- 24.56,
65
- 19.033333333,
66
- 20.983333333,
67
- 18.813333333,
68
- 25.17,
69
- 13.456666667,
70
- 25.136666667,
71
- 29,
72
- 14.66,
73
- 24.543333333,
74
- 21.626666667,
75
- 14.423333333,
76
- 18.576666667,
77
- 20.796666667,
78
- 25.78,
79
- 20.626666667,
80
- 15.813333333,
81
- 18.186666667,
82
- 25.373333333,
83
- 14.253333333,
84
- 21.356666667,
85
- 18.423333333,
86
- 21.78,
87
- 22.203333333,
88
- 27.576666667,
89
- 27.406666667,
90
- 22.22,
91
- 25.78,
92
- 15.846666667,
93
- 15.39,
94
- 22.373333333,
95
- 20.813333333,
96
- 23.983333333,
97
- 28.186666667,
98
- 26.61,
99
- 26,
100
- 22.813333333,
101
- 18.016666667,
102
- 13.813333333,
103
- 16.186666667,
104
- 17.796666667,
105
- 21.983333333,
106
- 14.236666667,
107
- 23.153333333,
108
- 17.236666667,
109
- 15,
110
- 20.576666667,
111
- 22.796666667,
112
- 27.78,
113
- 28.203333333,
114
- 27.203333333,
115
- 14.253333333,
116
- 13.39,
117
- 21.17,
118
- 19.813333333,
119
- 22.186666667,
120
- 14.236666667,
121
- 22.356666667,
122
- 15.44,
123
- 14.593333333,
124
- 12.61,
125
- 24.746666667,
126
- 24.813333333,
127
- 17.626666667,
128
- 12.813333333,
129
- 16.78,
130
- 20.39,
131
- 21,
132
- 17.813333333,
133
- 20.983333333,
134
- 25.186666667,
135
- 17.236666667,
136
- 21.373333333,
137
- 19.813333333,
138
- 21.39,
139
- 14.033333333,
140
- 10.406666667,
141
- 22.746666667,
142
- 21.22,
143
- 23.983333333,
144
- 13.846666667,
145
- 16.576666667,
146
- 20.39,
147
- 13.033333333,
148
- 24.543333333,
149
- 22.423333333,
150
- 24.186666667,
151
- 27.39,
152
- 16.05,
153
- 23.356666667,
154
- 18.033333333,
155
- 20.78,
156
- 18.016666667,
157
- 18.593333333,
158
- 26.17,
159
- 21.626666667,
160
- 16.016666667,
161
- 14.203333333,
162
- 17.186666667,
163
- 25.966666667,
164
- 24.813333333,
165
- 27.983333333,
166
- 24.22,
167
- 12.643333333,
168
- 21.95,
169
- 21.016666667,
170
- 19.203333333,
171
- 20.593333333,
172
- 21,
173
- 22.593333333,
174
- 19.016666667,
175
- 17.203333333,
176
- 11.423333333,
177
- 18.763333333,
178
- 21,
179
- 19.406666667,
180
- 13.446666667,
181
- 16.76,
182
- 25.14,
183
- 27.793333333,
184
- 24.826666667,
185
- 20.033333333,
186
- 22.173333333,
187
- 25.38,
188
- 18.066666667,
189
- 18.38,
190
- 16.62,
191
- 12.033333333,
192
- 12.586666667,
193
- 13.793333333,
194
- 11.62,
195
- 11,
196
- 18.933333333,
197
- 25.76,
198
- 15.1,
199
- 15.173333333,
200
- 21.553333333,
201
- 27.76,
202
- 24.24,
203
- 15.86,
204
- 17.966666667,
205
- 24.553333333,
206
- 16.48,
207
- 24.313333333,
208
- 22.24,
209
- 22.586666667,
210
- 27.76,
211
- 18.686666667,
212
- 19.966666667,
213
- 23.38,
214
- 13.686666667,
215
- 23.693333333,
216
- 23.033333333,
217
- 25.173333333,
218
- 22.826666667,
219
- 19.62,
220
- 11.86,
221
- 17.14,
222
- 18.206666667,
223
- 19.586666667,
224
- 26.346666667,
225
- 28.793333333,
226
- 18.686666667,
227
- 11.24,
228
- 16.346666667,
229
- 15.62,
230
- 83.226666667,
231
- 127.96666667,
232
- 104.84,
233
- 108.50666667,
234
- 148.44666667,
235
- 161.2,
236
- 132.94,
237
- 119.67333333,
238
- 139.44666667,
239
- 161.86666667,
240
- 169.49333333,
241
- 133.61333333,
242
- 133.35333333,
243
- 137.84,
244
- 137.44666667,
245
- 153.29333333,
246
- 147.60666667,
247
- 168.1,
248
- 150.2,
249
- 128.70666667,
250
- 133.62,
251
- 113.96,
252
- 131.78666667,
253
- 99.693333333,
254
- 148.62666667,
255
- 94.873333333,
256
- 88.126666667,
257
- 101.25333333,
258
- 126.34666667,
259
- 160.09333333,
260
- 165.65333333,
261
- 137.51333333,
262
- 152.64,
263
- 159.82,
264
- 116.34666667,
265
- 150.28666667,
266
- 148.14666667,
267
- 90.506666667,
268
- 124.84,
269
- 131.21333333,
270
- 175.1,
271
- 155.07333333,
272
- 116.39333333,
273
- 101.31333333,
274
- 141.41333333,
275
- 156.46,
276
- 131.38,
277
- 162.25333333,
278
- 182.70666667,
279
- 181.82,
280
- 124.62,
281
- 96.646666667,
282
- 96.413333333,
283
- 124.22,
284
- 146.96666667,
285
- 140.75333333,
286
- 106.12,
287
- 144.83333333,
288
- 152.43333333,
289
- 97.293333333,
290
- 96.44,
291
- 142.32,
292
- 142.33333333,
293
- 103.74,
294
- 118.54,
295
- 145.55333333,
296
- 122.16666667,
297
- 109.15333333,
298
- 134.74666667,
299
- 117.19333333,
300
- 122.83333333,
301
- 152.28,
302
- 170.50666667,
303
- 93.506666667,
304
- 122.23333333,
305
- 95.353333333,
306
- 114.72666667,
307
- 164.26666667,
308
- 130.64666667,
309
- 121.90666667,
310
- 110.93333333,
311
- 119.96666667,
312
- 119.16666667,
313
- 104.02666667,
314
- 121.52,
315
- 109.9,
316
- 125.09333333,
317
- 130.84666667,
318
- 116.08,
319
- 174.16666667,
320
- 151.1,
321
- 144.02666667,
322
- 162.48666667,
323
- 145.42666667,
324
- 131.92,
325
- 169.31333333,
326
- 87.253333333,
327
- 115.05333333,
328
- 145.20666667,
329
- 96.966666667,
330
- 104.28666667,
331
- 111.42666667,
332
- null,
333
- null
334
- ],
335
- "prints": [
336
- [
337
- "Last:111.43"
338
- ],
339
- [
340
- "Min:10.41"
341
- ],
342
- [
343
- "Max:182.71"
344
- ],
345
- [
346
- "Average:61.78"
347
- ]
348
- ],
349
- "last_value": 111.43,
350
- "minimum_value": 10.41,
351
- "maximum_value": 182.71,
352
- "average_value": 61.78
353
- },
354
- {
355
- "index_id": 152032,
356
- "metric_id": 16196,
357
- "metric": "connection_fit",
358
- "metric_legend": "connection_fit",
359
- "unit": "",
360
- "hidden": 0,
361
- "min": null,
362
- "max": null,
363
- "virtual": 0,
364
- "ds_data": {
365
- "ds_min": "1",
366
- "ds_max": "1",
367
- "ds_minmax_int": "0",
368
- "ds_last": "1",
369
- "ds_average": "1",
370
- "ds_total": "0",
371
- "ds_tickness": 1,
372
- "ds_color_line_mode": "1",
373
- "ds_color_line": "#9933ff"
374
- },
375
- "legend": "connection_fit",
376
- "stack": 0,
377
- "warn": null,
378
- "warn_low": null,
379
- "crit": null,
380
- "crit_low": null,
381
- "ds_color_area_warn": "#ff9a13",
382
- "ds_color_area_crit": "#e00b3d",
383
- "ds_order": 0,
384
- "data": [
385
- 130.99763333,
386
- 131.10763333,
387
- 131.1778,
388
- 131.08643333,
389
- 130.95643333,
390
- 125.59233333,
391
- 98.3463,
392
- 65.8563,
393
- 37.923233333,
394
- 29.0145,
395
- 24.6645,
396
- 21.015566667,
397
- 20.31,
398
- 20.31,
399
- 20.270166667,
400
- 20.060833333,
401
- 19.810833333,
402
- 19.5688,
403
- 19.3527,
404
- 19.1427,
405
- 18.964566667,
406
- 18.93,
407
- 18.93,
408
- 18.93,
409
- 18.93,
410
- 18.93,
411
- 18.969833333,
412
- 19.139333333,
413
- 19.3473,
414
- 19.493566667,
415
- 19.3527,
416
- 19.1427,
417
- 18.964566667,
418
- 18.93,
419
- 18.93,
420
- 18.93,
421
- 18.93,
422
- 18.93,
423
- 18.969833333,
424
- 19.139333333,
425
- 19.3473,
426
- 19.493566667,
427
- 19.3527,
428
- 19.1427,
429
- 18.964566667,
430
- 18.93,
431
- 18.93,
432
- 18.93,
433
- 18.93,
434
- 18.93,
435
- 18.969833333,
436
- 19.139333333,
437
- 19.3473,
438
- 19.493566667,
439
- 19.3527,
440
- 19.1427,
441
- 18.964566667,
442
- 18.93,
443
- 18.93,
444
- 18.93,
445
- 18.93,
446
- 18.93,
447
- 18.969833333,
448
- 19.139333333,
449
- 19.3473,
450
- 19.493566667,
451
- 19.3527,
452
- 19.1427,
453
- 18.964566667,
454
- 18.93,
455
- 18.93,
456
- 18.93,
457
- 18.93,
458
- 18.93,
459
- 18.969833333,
460
- 19.139333333,
461
- 19.3473,
462
- 19.493566667,
463
- 19.3527,
464
- 19.1427,
465
- 18.964566667,
466
- 18.93,
467
- 18.93,
468
- 18.93,
469
- 18.93,
470
- 18.93,
471
- 18.969833333,
472
- 19.155266667,
473
- 19.375266667,
474
- 19.523566667,
475
- 19.3827,
476
- 19.1727,
477
- 18.994566667,
478
- 18.96,
479
- 18.96,
480
- 18.96,
481
- 18.96,
482
- 18.96,
483
- 19.0556,
484
- 19.550033333,
485
- 20.140033333,
486
- 20.634433333,
487
- 20.73,
488
- 20.73,
489
- 20.722033333,
490
- 20.656266667,
491
- 20.584233333,
492
- 20.554066667,
493
- 20.6695,
494
- 20.8195,
495
- 20.8978,
496
- 20.663033333,
497
- 20.345066667,
498
- 20.0888,
499
- 20.04,
500
- 20.04,
501
- 20.04,
502
- 20.047966667,
503
- 20.057966667,
504
- 20.1078,
505
- 20.295266667,
506
- 20.523233333,
507
- 20.673566667,
508
- 20.5088,
509
- 20.276766667,
510
- 20.078633333,
511
- 20.04,
512
- 20.04,
513
- 20.04,
514
- 20.047966667,
515
- 20.057966667,
516
- 20.1078,
517
- 20.295266667,
518
- 20.523233333,
519
- 20.673566667,
520
- 20.5096,
521
- 20.2696,
522
- 20.069266667,
523
- 20.03,
524
- 20.03,
525
- 20.03,
526
- 20.045866667,
527
- 20.057933333,
528
- 20.091733333,
529
- 20.234866667,
530
- 20.396933333,
531
- 20.509333333,
532
- 20.371333333,
533
- 20.171333333,
534
- 20.003066667,
535
- 19.97,
536
- 19.97,
537
- 19.97,
538
- 19.977933333,
539
- 19.987933333,
540
- 20.005866667,
541
- 20.065533333,
542
- 20.1276,
543
- 20.179666667,
544
- 20.150333333,
545
- 20.108266667,
546
- 20.0762,
547
- 20.07,
548
- 20.07,
549
- 20.07,
550
- 20.077933333,
551
- 20.087933333,
552
- 20.105866667,
553
- 20.165533333,
554
- 20.2276,
555
- 20.24,
556
- 20.041666667,
557
- 19.783733333,
558
- 19.571333333,
559
- 19.53,
560
- 19.53,
561
- 19.537933333,
562
- 19.547933333,
563
- 19.557933333,
564
- 19.567933333,
565
- 19.5938,
566
- 19.631733333,
567
- 19.8304,
568
- 20.7368,
569
- 21.808866667,
570
- 27.519866667,
571
- 45.074866667,
572
- 81.596266667,
573
- 107.08186667,
574
- 115.47386667,
575
- 119.99193333,
576
- 123.8156,
577
- 124.61126667,
578
- 124.72126667,
579
- 125.02846667,
580
- 126.20293333,
581
- 127.56486667,
582
- 128.757,
583
- 129.16253333,
584
- 129.38253333,
585
- 129.5658,
586
- 129.5842,
587
- 129.5542,
588
- 129.5474,
589
- 129.64126667,
590
- 129.75126667,
591
- 129.93666667,
592
- 130.456,
593
- 131.056,
594
- 131.56126667,
595
- 131.65,
596
- 131.65,
597
- 131.64613333,
598
- 131.6242,
599
- 131.59613333,
600
- 131.59546667,
601
- 131.68126667,
602
- 131.79126667,
603
- 131.85486667,
604
- 131.7152,
605
- 131.5352,
606
- 131.3842,
607
- 131.36,
608
- 131.36,
609
- 131.35613333,
610
- 131.3342,
611
- 131.3042,
612
- 131.2974,
613
- 131.38933333,
614
- 131.49126667,
615
- 131.57226667,
616
- 131.52453333,
617
- 131.4426,
618
- 131.36806667,
619
- 131.36,
620
- 131.36,
621
- 131.35613333,
622
- 131.3342,
623
- 131.3042,
624
- 131.2974,
625
- 131.38933333,
626
- 131.49126667,
627
- 131.57226667,
628
- 131.52453333,
629
- 131.4426,
630
- 131.36806667,
631
- 131.36,
632
- 131.36,
633
- 131.35613333,
634
- 131.3342,
635
- 131.3042,
636
- 131.2974,
637
- 131.38933333,
638
- 131.49126667,
639
- 131.59546667,
640
- 131.67353333,
641
- 131.7416,
642
- 131.79193333,
643
- 131.8,
644
- 131.8,
645
- 131.79613333,
646
- 131.77613333,
647
- 131.7542,
648
- 131.74546667,
649
- 131.83126667,
650
- 131.94126667,
651
- 132.02226667,
652
- 131.9726,
653
- 131.88453333,
654
- 131.81613333,
655
- 131.8,
656
- 131.8,
657
- 131.79613333,
658
- 131.77613333,
659
- 131.7542,
660
- 131.74546667,
661
- 131.83126667,
662
- 131.94126667,
663
- 132.02226667,
664
- 131.9726,
665
- 131.88453333,
666
- 131.81613333,
667
- 131.8,
668
- 131.8,
669
- 131.79613333,
670
- 131.77613333,
671
- 131.7542,
672
- null,
673
- null
674
- ],
675
- "prints": [
676
- [
677
- "Last:131.75"
678
- ],
679
- [
680
- "Min:18.93"
681
- ],
682
- [
683
- "Max:132.02"
684
- ],
685
- [
686
- "Average:61.08"
687
- ]
688
- ],
689
- "last_value": 131.75,
690
- "minimum_value": 18.93,
691
- "maximum_value": 132.02,
692
- "average_value": 61.08
693
- },
694
- {
695
- "index_id": 152032,
696
- "metric_id": 16197,
697
- "metric": "connection_lower_margin",
698
- "metric_legend": "connection_lower_margin",
699
- "unit": "",
700
- "hidden": 0,
701
- "min": null,
702
- "max": null,
703
- "virtual": 0,
704
- "ds_data": {
705
- "ds_min": "1",
706
- "ds_max": "1",
707
- "ds_minmax_int": "0",
708
- "ds_last": "1",
709
- "ds_average": "1",
710
- "ds_total": "0",
711
- "ds_tickness": 1,
712
- "ds_color_line_mode": "1",
713
- "ds_color_line": "#00ff99"
714
- },
715
- "legend": "connection_lower_margin",
716
- "stack": 0,
717
- "warn": null,
718
- "warn_low": null,
719
- "crit": null,
720
- "crit_low": null,
721
- "ds_color_area_warn": "#ff9a13",
722
- "ds_color_area_crit": "#e00b3d",
723
- "ds_order": 0,
724
- "data": [
725
- -92.84,
726
- -92.84,
727
- -92.84,
728
- -92.84,
729
- -92.84,
730
- -88.792933333,
731
- -67.8513,
732
- -42.869266667,
733
- -21.928366667,
734
- -17.88,
735
- -17.88,
736
- -17.88,
737
- -17.88,
738
- -17.88,
739
- -17.88,
740
- -17.88,
741
- -17.88,
742
- -17.88,
743
- -17.88,
744
- -17.88,
745
- -17.88,
746
- -17.88,
747
- -17.88,
748
- -17.88,
749
- -17.88,
750
- -17.88,
751
- -17.88,
752
- -17.88,
753
- -17.88,
754
- -17.88,
755
- -17.88,
756
- -17.88,
757
- -17.88,
758
- -17.88,
759
- -17.88,
760
- -17.88,
761
- -17.88,
762
- -17.88,
763
- -17.88,
764
- -17.88,
765
- -17.88,
766
- -17.88,
767
- -17.88,
768
- -17.88,
769
- -17.88,
770
- -17.88,
771
- -17.88,
772
- -17.88,
773
- -17.88,
774
- -17.88,
775
- -17.88,
776
- -17.88,
777
- -17.88,
778
- -17.88,
779
- -17.88,
780
- -17.88,
781
- -17.88,
782
- -17.88,
783
- -17.88,
784
- -17.88,
785
- -17.88,
786
- -17.88,
787
- -17.88,
788
- -17.88,
789
- -17.88,
790
- -17.88,
791
- -17.88,
792
- -17.88,
793
- -17.88,
794
- -17.88,
795
- -17.88,
796
- -17.88,
797
- -17.88,
798
- -17.88,
799
- -17.88,
800
- -17.88,
801
- -17.88,
802
- -17.88,
803
- -17.88,
804
- -17.88,
805
- -17.88,
806
- -17.88,
807
- -17.88,
808
- -17.88,
809
- -17.88,
810
- -17.88,
811
- -17.88,
812
- -17.88,
813
- -17.88,
814
- -17.88,
815
- -17.88,
816
- -17.88,
817
- -17.88,
818
- -17.88,
819
- -17.88,
820
- -17.88,
821
- -17.88,
822
- -17.88,
823
- -17.88,
824
- -17.88,
825
- -17.88,
826
- -17.88,
827
- -17.88,
828
- -17.88,
829
- -17.88,
830
- -17.88,
831
- -17.88,
832
- -17.88,
833
- -17.88,
834
- -17.88,
835
- -17.88,
836
- -17.88,
837
- -17.88,
838
- -17.88,
839
- -17.88,
840
- -17.88,
841
- -17.88,
842
- -17.88,
843
- -17.88,
844
- -17.88,
845
- -17.88,
846
- -17.88,
847
- -17.88,
848
- -17.88,
849
- -17.88,
850
- -17.88,
851
- -17.88,
852
- -17.88,
853
- -17.88,
854
- -17.88,
855
- -17.88,
856
- -17.88,
857
- -17.88,
858
- -17.88,
859
- -17.88,
860
- -17.88,
861
- -17.88,
862
- -17.88,
863
- -17.88,
864
- -17.88,
865
- -17.88,
866
- -17.88,
867
- -17.88,
868
- -17.88,
869
- -17.88,
870
- -17.88,
871
- -17.88,
872
- -17.88,
873
- -17.88,
874
- -17.88,
875
- -17.88,
876
- -17.88,
877
- -17.88,
878
- -17.88,
879
- -17.88,
880
- -17.88,
881
- -17.88,
882
- -17.88,
883
- -17.88,
884
- -17.88,
885
- -17.88,
886
- -17.88,
887
- -17.88,
888
- -17.88,
889
- -17.88,
890
- -17.88,
891
- -17.88,
892
- -17.88,
893
- -17.88,
894
- -17.88,
895
- -17.88,
896
- -17.88,
897
- -17.88,
898
- -17.88,
899
- -17.88,
900
- -17.88,
901
- -17.88,
902
- -17.88,
903
- -17.88,
904
- -17.88,
905
- -17.88,
906
- -17.88,
907
- -17.88,
908
- -17.88,
909
- -17.88,
910
- -21.9736,
911
- -36.769466667,
912
- -67.8514,
913
- -88.9438,
914
- -92.84,
915
- -92.84,
916
- -92.84,
917
- -92.84,
918
- -92.84,
919
- -92.84,
920
- -92.84,
921
- -92.84,
922
- -92.84,
923
- -92.84,
924
- -92.84,
925
- -92.84,
926
- -92.84,
927
- -92.84,
928
- -92.84,
929
- -92.84,
930
- -92.84,
931
- -92.84,
932
- -92.84,
933
- -92.84,
934
- -92.84,
935
- -92.84,
936
- -92.84,
937
- -92.84,
938
- -92.84,
939
- -92.84,
940
- -92.84,
941
- -92.84,
942
- -92.84,
943
- -92.84,
944
- -92.84,
945
- -92.84,
946
- -92.84,
947
- -92.84,
948
- -92.84,
949
- -92.84,
950
- -92.84,
951
- -92.84,
952
- -92.84,
953
- -92.84,
954
- -92.84,
955
- -92.84,
956
- -92.84,
957
- -92.84,
958
- -92.84,
959
- -92.84,
960
- -92.84,
961
- -92.84,
962
- -92.84,
963
- -92.84,
964
- -92.84,
965
- -92.84,
966
- -92.84,
967
- -92.84,
968
- -92.84,
969
- -92.84,
970
- -92.84,
971
- -92.84,
972
- -92.84,
973
- -92.84,
974
- -92.84,
975
- -92.84,
976
- -92.84,
977
- -92.84,
978
- -92.84,
979
- -92.84,
980
- -92.84,
981
- -92.84,
982
- -92.84,
983
- -92.84,
984
- -92.84,
985
- -92.84,
986
- -92.84,
987
- -92.84,
988
- -92.84,
989
- -92.84,
990
- -92.84,
991
- -92.84,
992
- -92.84,
993
- -92.84,
994
- -92.84,
995
- -92.84,
996
- -92.84,
997
- -92.84,
998
- -92.84,
999
- -92.84,
1000
- -92.84,
1001
- -92.84,
1002
- -92.84,
1003
- -92.84,
1004
- -92.84,
1005
- -92.84,
1006
- -92.84,
1007
- -92.84,
1008
- -92.84,
1009
- -92.84,
1010
- -92.84,
1011
- -92.84,
1012
- null,
1013
- null
1014
- ],
1015
- "prints": [
1016
- [
1017
- "Last:-92.84"
1018
- ],
1019
- [
1020
- "Min:-92.84"
1021
- ],
1022
- [
1023
- "Max:-17.88"
1024
- ],
1025
- [
1026
- "Average:-45.81"
1027
- ]
1028
- ],
1029
- "last_value": null,
1030
- "minimum_value": null,
1031
- "maximum_value": null,
1032
- "average_value": null
1033
- },
1034
- {
1035
- "index_id": 152032,
1036
- "metric_id": 16198,
1037
- "metric": "connection_upper_margin",
1038
- "metric_legend": "connection_upper_margin",
1039
- "unit": "",
1040
- "hidden": 0,
1041
- "min": null,
1042
- "max": null,
1043
- "virtual": 0,
1044
- "ds_data": {
1045
- "ds_min": "1",
1046
- "ds_max": "1",
1047
- "ds_minmax_int": "0",
1048
- "ds_last": "1",
1049
- "ds_average": "1",
1050
- "ds_total": "0",
1051
- "ds_tickness": 1,
1052
- "ds_color_line_mode": "1",
1053
- "ds_color_line": "#9900ff"
1054
- },
1055
- "legend": "connection_upper_margin",
1056
- "stack": 0,
1057
- "warn": null,
1058
- "warn_low": null,
1059
- "crit": null,
1060
- "crit_low": null,
1061
- "ds_color_area_warn": "#ff9a13",
1062
- "ds_color_area_crit": "#e00b3d",
1063
- "ds_order": 0,
1064
- "data": [
1065
- 80.19,
1066
- 80.19,
1067
- 80.19,
1068
- 80.19,
1069
- 80.19,
1070
- 76.405833333,
1071
- 56.8458,
1072
- 33.497833333,
1073
- 13.932,
1074
- 10.15,
1075
- 10.15,
1076
- 10.15,
1077
- 10.15,
1078
- 10.15,
1079
- 10.15,
1080
- 10.15,
1081
- 10.15,
1082
- 10.15,
1083
- 10.15,
1084
- 10.15,
1085
- 10.15,
1086
- 10.15,
1087
- 10.15,
1088
- 10.15,
1089
- 10.15,
1090
- 10.15,
1091
- 10.15,
1092
- 10.15,
1093
- 10.15,
1094
- 10.15,
1095
- 10.15,
1096
- 10.15,
1097
- 10.15,
1098
- 10.15,
1099
- 10.15,
1100
- 10.15,
1101
- 10.15,
1102
- 10.15,
1103
- 10.15,
1104
- 10.15,
1105
- 10.15,
1106
- 10.15,
1107
- 10.15,
1108
- 10.15,
1109
- 10.15,
1110
- 10.15,
1111
- 10.15,
1112
- 10.15,
1113
- 10.15,
1114
- 10.15,
1115
- 10.15,
1116
- 10.15,
1117
- 10.15,
1118
- 10.15,
1119
- 10.15,
1120
- 10.15,
1121
- 10.15,
1122
- 10.15,
1123
- 10.15,
1124
- 10.15,
1125
- 10.15,
1126
- 10.15,
1127
- 10.15,
1128
- 10.15,
1129
- 10.15,
1130
- 10.15,
1131
- 10.15,
1132
- 10.15,
1133
- 10.15,
1134
- 10.15,
1135
- 10.15,
1136
- 10.15,
1137
- 10.15,
1138
- 10.15,
1139
- 10.15,
1140
- 10.15,
1141
- 10.15,
1142
- 10.15,
1143
- 10.15,
1144
- 10.15,
1145
- 10.15,
1146
- 10.15,
1147
- 10.15,
1148
- 10.15,
1149
- 10.15,
1150
- 10.15,
1151
- 10.15,
1152
- 10.15,
1153
- 10.15,
1154
- 10.15,
1155
- 10.15,
1156
- 10.15,
1157
- 10.15,
1158
- 10.15,
1159
- 10.15,
1160
- 10.15,
1161
- 10.15,
1162
- 10.15,
1163
- 10.15,
1164
- 10.15,
1165
- 10.15,
1166
- 10.15,
1167
- 10.15,
1168
- 10.15,
1169
- 10.15,
1170
- 10.15,
1171
- 10.15,
1172
- 10.15,
1173
- 10.15,
1174
- 10.15,
1175
- 10.15,
1176
- 10.15,
1177
- 10.15,
1178
- 10.15,
1179
- 10.15,
1180
- 10.15,
1181
- 10.15,
1182
- 10.15,
1183
- 10.15,
1184
- 10.15,
1185
- 10.15,
1186
- 10.15,
1187
- 10.15,
1188
- 10.15,
1189
- 10.15,
1190
- 10.15,
1191
- 10.15,
1192
- 10.15,
1193
- 10.15,
1194
- 10.15,
1195
- 10.15,
1196
- 10.15,
1197
- 10.15,
1198
- 10.15,
1199
- 10.15,
1200
- 10.15,
1201
- 10.15,
1202
- 10.15,
1203
- 10.15,
1204
- 10.15,
1205
- 10.15,
1206
- 10.15,
1207
- 10.15,
1208
- 10.15,
1209
- 10.15,
1210
- 10.15,
1211
- 10.15,
1212
- 10.15,
1213
- 10.15,
1214
- 10.15,
1215
- 10.15,
1216
- 10.15,
1217
- 10.15,
1218
- 10.15,
1219
- 10.15,
1220
- 10.15,
1221
- 10.15,
1222
- 10.15,
1223
- 10.15,
1224
- 10.15,
1225
- 10.15,
1226
- 10.15,
1227
- 10.15,
1228
- 10.15,
1229
- 10.15,
1230
- 10.15,
1231
- 10.15,
1232
- 10.15,
1233
- 10.15,
1234
- 10.15,
1235
- 10.15,
1236
- 10.15,
1237
- 10.15,
1238
- 10.15,
1239
- 10.15,
1240
- 10.15,
1241
- 10.15,
1242
- 10.15,
1243
- 10.15,
1244
- 10.15,
1245
- 10.15,
1246
- 10.15,
1247
- 10.15,
1248
- 10.15,
1249
- 10.15,
1250
- 13.9818,
1251
- 27.801,
1252
- 56.8424,
1253
- 76.543866667,
1254
- 80.19,
1255
- 80.19,
1256
- 80.19,
1257
- 80.19,
1258
- 80.19,
1259
- 80.19,
1260
- 80.19,
1261
- 80.19,
1262
- 80.19,
1263
- 80.19,
1264
- 80.19,
1265
- 80.19,
1266
- 80.19,
1267
- 80.19,
1268
- 80.19,
1269
- 80.19,
1270
- 80.19,
1271
- 80.19,
1272
- 80.19,
1273
- 80.19,
1274
- 80.19,
1275
- 80.19,
1276
- 80.19,
1277
- 80.19,
1278
- 80.19,
1279
- 80.19,
1280
- 80.19,
1281
- 80.19,
1282
- 80.19,
1283
- 80.19,
1284
- 80.19,
1285
- 80.19,
1286
- 80.19,
1287
- 80.19,
1288
- 80.19,
1289
- 80.19,
1290
- 80.19,
1291
- 80.19,
1292
- 80.19,
1293
- 80.19,
1294
- 80.19,
1295
- 80.19,
1296
- 80.19,
1297
- 80.19,
1298
- 80.19,
1299
- 80.19,
1300
- 80.19,
1301
- 80.19,
1302
- 80.19,
1303
- 80.19,
1304
- 80.19,
1305
- 80.19,
1306
- 80.19,
1307
- 80.19,
1308
- 80.19,
1309
- 80.19,
1310
- 80.19,
1311
- 80.19,
1312
- 80.19,
1313
- 80.19,
1314
- 80.19,
1315
- 80.19,
1316
- 80.19,
1317
- 80.19,
1318
- 80.19,
1319
- 80.19,
1320
- 80.19,
1321
- 80.19,
1322
- 80.19,
1323
- 80.19,
1324
- 80.19,
1325
- 80.19,
1326
- 80.19,
1327
- 80.19,
1328
- 80.19,
1329
- 80.19,
1330
- 80.19,
1331
- 80.19,
1332
- 80.19,
1333
- 80.19,
1334
- 80.19,
1335
- 80.19,
1336
- 80.19,
1337
- 80.19,
1338
- 80.19,
1339
- 80.19,
1340
- 80.19,
1341
- 80.19,
1342
- 80.19,
1343
- 80.19,
1344
- 80.19,
1345
- 80.19,
1346
- 80.19,
1347
- 80.19,
1348
- 80.19,
1349
- 80.19,
1350
- 80.19,
1351
- 80.19,
1352
- null,
1353
- null
1354
- ],
1355
- "prints": [
1356
- [
1357
- "Last:80.19"
1358
- ],
1359
- [
1360
- "Min:10.15"
1361
- ],
1362
- [
1363
- "Max:80.19"
1364
- ],
1365
- [
1366
- "Average:36.24"
1367
- ]
1368
- ],
1369
- "last_value": 80.19,
1370
- "minimum_value": 10.15,
1371
- "maximum_value": 80.19,
1372
- "average_value": 36.24
1373
- },
1374
- {
1375
- "index_id": 152032,
1376
- "metric_id": 15177,
1377
- "metric": "connection_lower_thresholds",
1378
- "metric_legend": "connection_lower_thresholds",
1379
- "unit": "",
1380
- "hidden": 0,
1381
- "min": null,
1382
- "max": null,
1383
- "virtual": 0,
1384
- "ds_data": {
1385
- "compo_id": 50,
1386
- "host_id": null,
1387
- "service_id": null,
1388
- "name": "Anomaly Lower Threshold",
1389
- "ds_order": 1,
1390
- "ds_hidecurve": null,
1391
- "ds_name": ".*_lower_thresholds",
1392
- "ds_color_line": "#D728C9",
1393
- "ds_color_line_mode": "0",
1394
- "ds_color_area": "#FFFFFF",
1395
- "ds_color_area_warn": "#F8C706",
1396
- "ds_color_area_crit": "#F91E05",
1397
- "ds_filled": null,
1398
- "ds_max": null,
1399
- "ds_min": null,
1400
- "ds_minmax_int": null,
1401
- "ds_average": null,
1402
- "ds_last": null,
1403
- "ds_total": null,
1404
- "ds_tickness": 2,
1405
- "ds_transparency": "80",
1406
- "ds_invert": null,
1407
- "ds_legend": "Lower Threshold",
1408
- "ds_jumpline": "0",
1409
- "ds_stack": null,
1410
- "default_tpl1": null,
1411
- "comment": null
1412
- },
1413
- "legend": "Lower Threshold",
1414
- "stack": 0,
1415
- "warn": null,
1416
- "warn_low": null,
1417
- "crit": null,
1418
- "crit_low": null,
1419
- "ds_order": 1,
1420
- "data": [
1421
- -147.52236667,
1422
- -147.41236667,
1423
- -147.3422,
1424
- -147.43356667,
1425
- -147.56356667,
1426
- -140.79443333,
1427
- -105.2176,
1428
- -62.745566667,
1429
- -27.859833333,
1430
- -24.6255,
1431
- -28.9755,
1432
- -32.624433333,
1433
- -33.33,
1434
- -33.33,
1435
- -33.369833333,
1436
- -33.579166667,
1437
- -33.829166667,
1438
- -34.0712,
1439
- -34.2873,
1440
- -34.4973,
1441
- -34.667466667,
1442
- -34.7,
1443
- -34.7,
1444
- -34.7,
1445
- -34.7,
1446
- -34.7,
1447
- -34.668133333,
1448
- -34.4927,
1449
- -34.2827,
1450
- -34.1444,
1451
- -34.2873,
1452
- -34.4973,
1453
- -34.667466667,
1454
- -34.7,
1455
- -34.7,
1456
- -34.7,
1457
- -34.7,
1458
- -34.7,
1459
- -34.668133333,
1460
- -34.4927,
1461
- -34.2827,
1462
- -34.1444,
1463
- -34.2873,
1464
- -34.4973,
1465
- -34.667466667,
1466
- -34.7,
1467
- -34.7,
1468
- -34.7,
1469
- -34.7,
1470
- -34.7,
1471
- -34.668133333,
1472
- -34.4927,
1473
- -34.2827,
1474
- -34.1444,
1475
- -34.2873,
1476
- -34.4973,
1477
- -34.667466667,
1478
- -34.7,
1479
- -34.7,
1480
- -34.7,
1481
- -34.7,
1482
- -34.7,
1483
- -34.668133333,
1484
- -34.4927,
1485
- -34.2827,
1486
- -34.1444,
1487
- -34.2873,
1488
- -34.4973,
1489
- -34.667466667,
1490
- -34.7,
1491
- -34.7,
1492
- -34.7,
1493
- -34.7,
1494
- -34.7,
1495
- -34.668133333,
1496
- -34.4927,
1497
- -34.2827,
1498
- -34.1444,
1499
- -34.2873,
1500
- -34.4973,
1501
- -34.667466667,
1502
- -34.7,
1503
- -34.7,
1504
- -34.7,
1505
- -34.7,
1506
- -34.7,
1507
- -34.668133333,
1508
- -34.484733333,
1509
- -34.264733333,
1510
- -34.116433333,
1511
- -34.2573,
1512
- -34.4673,
1513
- -34.637466667,
1514
- -34.67,
1515
- -34.67,
1516
- -34.67,
1517
- -34.67,
1518
- -34.67,
1519
- -34.5744,
1520
- -34.079966667,
1521
- -33.497933333,
1522
- -33.005566667,
1523
- -32.91,
1524
- -32.91,
1525
- -32.917966667,
1526
- -32.975766667,
1527
- -33.045766667,
1528
- -33.0839,
1529
- -32.9705,
1530
- -32.8205,
1531
- -32.7422,
1532
- -32.976966667,
1533
- -33.286966667,
1534
- -33.549166667,
1535
- -33.6,
1536
- -33.6,
1537
- -33.6,
1538
- -33.592033333,
1539
- -33.582033333,
1540
- -33.5322,
1541
- -33.344733333,
1542
- -33.116766667,
1543
- -32.966433333,
1544
- -33.123233333,
1545
- -33.3612,
1546
- -33.561366667,
1547
- -33.6,
1548
- -33.6,
1549
- -33.6,
1550
- -33.592033333,
1551
- -33.582033333,
1552
- -33.5322,
1553
- -33.344733333,
1554
- -33.116766667,
1555
- -32.966433333,
1556
- -33.1304,
1557
- -33.3704,
1558
- -33.5628,
1559
- -33.6,
1560
- -33.6,
1561
- -33.6,
1562
- -33.592066667,
1563
- -33.582066667,
1564
- -33.548266667,
1565
- -33.405133333,
1566
- -33.235133333,
1567
- -33.1286,
1568
- -33.268666667,
1569
- -33.468666667,
1570
- -33.636933333,
1571
- -33.67,
1572
- -33.67,
1573
- -33.67,
1574
- -33.662066667,
1575
- -33.652066667,
1576
- -33.6262,
1577
- -33.5724,
1578
- -33.504466667,
1579
- -33.458266667,
1580
- -33.481733333,
1581
- -33.529666667,
1582
- -33.5638,
1583
- -33.57,
1584
- -33.57,
1585
- -33.57,
1586
- -33.562066667,
1587
- -33.552066667,
1588
- -33.5262,
1589
- -33.4724,
1590
- -33.404466667,
1591
- -33.39,
1592
- -33.596266667,
1593
- -33.848333333,
1594
- -34.058666667,
1595
- -34.1,
1596
- -34.1,
1597
- -34.1,
1598
- -34.092066667,
1599
- -34.082066667,
1600
- -34.064133333,
1601
- -34.0362,
1602
- -34.0062,
1603
- -33.801666667,
1604
- -32.901133333,
1605
- -31.831133333,
1606
- -38.408866667,
1607
- -65.231533333,
1608
- -121.966,
1609
- -159.74953333,
1610
- -163.04806667,
1611
- -158.53613333,
1612
- -154.7044,
1613
- -153.90873333,
1614
- -153.79873333,
1615
- -153.49346667,
1616
- -152.32513333,
1617
- -150.95513333,
1618
- -149.76493333,
1619
- -149.36553333,
1620
- -149.13746667,
1621
- -148.95613333,
1622
- -148.94386667,
1623
- -148.9658,
1624
- -148.97453333,
1625
- -148.88873333,
1626
- -148.77873333,
1627
- -148.5914,
1628
- -148.06593333,
1629
- -147.474,
1630
- -146.9668,
1631
- -146.87,
1632
- -146.87,
1633
- -146.87386667,
1634
- -146.8958,
1635
- -146.9258,
1636
- -146.9326,
1637
- -146.83873333,
1638
- -146.72873333,
1639
- -146.66513333,
1640
- -146.8048,
1641
- -146.9848,
1642
- -147.13773333,
1643
- -147.17,
1644
- -147.17,
1645
- -147.17386667,
1646
- -147.1958,
1647
- -147.22386667,
1648
- -147.22453333,
1649
- -147.13873333,
1650
- -147.02873333,
1651
- -146.94966667,
1652
- -147.00546667,
1653
- -147.08546667,
1654
- -147.15386667,
1655
- -147.17,
1656
- -147.17,
1657
- -147.17386667,
1658
- -147.1958,
1659
- -147.22386667,
1660
- -147.22453333,
1661
- -147.13873333,
1662
- -147.02873333,
1663
- -146.94966667,
1664
- -147.00546667,
1665
- -147.08546667,
1666
- -147.15386667,
1667
- -147.17,
1668
- -147.17,
1669
- -147.17386667,
1670
- -147.1958,
1671
- -147.22386667,
1672
- -147.22453333,
1673
- -147.13873333,
1674
- -147.02873333,
1675
- -146.92453333,
1676
- -146.8484,
1677
- -146.78646667,
1678
- -146.72806667,
1679
- -146.72,
1680
- -146.72,
1681
- -146.72386667,
1682
- -146.7458,
1683
- -146.77386667,
1684
- -146.77453333,
1685
- -146.68873333,
1686
- -146.57873333,
1687
- -146.49966667,
1688
- -146.55546667,
1689
- -146.63546667,
1690
- -146.70386667,
1691
- -146.72,
1692
- -146.72,
1693
- -146.72386667,
1694
- -146.7458,
1695
- -146.77386667,
1696
- -146.77453333,
1697
- -146.68873333,
1698
- -146.57873333,
1699
- -146.49966667,
1700
- -146.55546667,
1701
- -146.63546667,
1702
- -146.70386667,
1703
- -146.72,
1704
- -146.72,
1705
- -146.72386667,
1706
- -146.7458,
1707
- -146.77386667,
1708
- null,
1709
- null
1710
- ],
1711
- "prints": [],
1712
- "last_value": null,
1713
- "minimum_value": null,
1714
- "maximum_value": null,
1715
- "average_value": null
1716
- },
1717
- {
1718
- "index_id": 152032,
1719
- "metric_id": 15178,
1720
- "metric": "connection_upper_thresholds",
1721
- "metric_legend": "connection_upper_thresholds",
1722
- "unit": "",
1723
- "hidden": 0,
1724
- "min": null,
1725
- "max": null,
1726
- "virtual": 0,
1727
- "ds_data": {
1728
- "compo_id": 51,
1729
- "host_id": null,
1730
- "service_id": null,
1731
- "name": "Anomaly Upper Threshold",
1732
- "ds_order": 1,
1733
- "ds_hidecurve": null,
1734
- "ds_name": ".*_upper_thresholds",
1735
- "ds_color_line": "#D728C9",
1736
- "ds_color_line_mode": "0",
1737
- "ds_color_area": "#FFFFFF",
1738
- "ds_color_area_warn": "#F8C706",
1739
- "ds_color_area_crit": "#F91E05",
1740
- "ds_filled": null,
1741
- "ds_max": null,
1742
- "ds_min": null,
1743
- "ds_minmax_int": null,
1744
- "ds_average": null,
1745
- "ds_last": null,
1746
- "ds_total": null,
1747
- "ds_tickness": 2,
1748
- "ds_transparency": "80",
1749
- "ds_invert": null,
1750
- "ds_legend": "Upper Threshold",
1751
- "ds_jumpline": "0",
1752
- "ds_stack": null,
1753
- "default_tpl1": null,
1754
- "comment": null
1755
- },
1756
- "legend": "Upper Threshold",
1757
- "stack": 0,
1758
- "warn": null,
1759
- "warn_low": null,
1760
- "crit": null,
1761
- "crit_low": null,
1762
- "ds_order": 1,
1763
- "data": [
1764
- 371.55763333,
1765
- 371.66763333,
1766
- 371.7378,
1767
- 371.64643333,
1768
- 371.5244,
1769
- 354.80983333,
1770
- 268.86776667,
1771
- 166.34573333,
1772
- 79.7272,
1773
- 59.4745,
1774
- 55.1245,
1775
- 51.475566667,
1776
- 50.77,
1777
- 50.77,
1778
- 50.730166667,
1779
- 50.520833333,
1780
- 50.270833333,
1781
- 50.020833333,
1782
- 49.810666667,
1783
- 49.6027,
1784
- 49.424566667,
1785
- 49.39,
1786
- 49.39,
1787
- 49.39,
1788
- 49.39,
1789
- 49.39,
1790
- 49.421866667,
1791
- 49.5973,
1792
- 49.8073,
1793
- 49.9456,
1794
- 49.810666667,
1795
- 49.6027,
1796
- 49.424566667,
1797
- 49.39,
1798
- 49.39,
1799
- 49.39,
1800
- 49.39,
1801
- 49.39,
1802
- 49.421866667,
1803
- 49.5973,
1804
- 49.8073,
1805
- 49.9456,
1806
- 49.810666667,
1807
- 49.6027,
1808
- 49.424566667,
1809
- 49.39,
1810
- 49.39,
1811
- 49.39,
1812
- 49.39,
1813
- 49.39,
1814
- 49.421866667,
1815
- 49.5973,
1816
- 49.8073,
1817
- 49.9456,
1818
- 49.810666667,
1819
- 49.6027,
1820
- 49.424566667,
1821
- 49.39,
1822
- 49.39,
1823
- 49.39,
1824
- 49.39,
1825
- 49.39,
1826
- 49.421866667,
1827
- 49.5973,
1828
- 49.8073,
1829
- 49.9456,
1830
- 49.810666667,
1831
- 49.6027,
1832
- 49.424566667,
1833
- 49.39,
1834
- 49.39,
1835
- 49.39,
1836
- 49.39,
1837
- 49.39,
1838
- 49.421866667,
1839
- 49.5973,
1840
- 49.8073,
1841
- 49.9456,
1842
- 49.810666667,
1843
- 49.6027,
1844
- 49.424566667,
1845
- 49.39,
1846
- 49.39,
1847
- 49.39,
1848
- 49.39,
1849
- 49.39,
1850
- 49.429833333,
1851
- 49.6073,
1852
- 49.825266667,
1853
- 49.981533333,
1854
- 49.8427,
1855
- 49.6327,
1856
- 49.454566667,
1857
- 49.42,
1858
- 49.42,
1859
- 49.42,
1860
- 49.42,
1861
- 49.42,
1862
- 49.5156,
1863
- 50.010033333,
1864
- 50.600033333,
1865
- 51.094433333,
1866
- 51.19,
1867
- 51.19,
1868
- 51.174066667,
1869
- 51.114233333,
1870
- 51.044233333,
1871
- 51.0061,
1872
- 51.127466667,
1873
- 51.2795,
1874
- 51.349833333,
1875
- 51.113033333,
1876
- 50.803033333,
1877
- 50.540833333,
1878
- 50.49,
1879
- 50.49,
1880
- 50.497966667,
1881
- 50.507966667,
1882
- 50.517966667,
1883
- 50.559833333,
1884
- 50.753233333,
1885
- 50.983233333,
1886
- 51.133566667,
1887
- 50.9688,
1888
- 50.7288,
1889
- 50.528633333,
1890
- 50.49,
1891
- 50.49,
1892
- 50.497966667,
1893
- 50.507966667,
1894
- 50.517966667,
1895
- 50.559833333,
1896
- 50.753233333,
1897
- 50.983233333,
1898
- 51.133566667,
1899
- 50.9696,
1900
- 50.7296,
1901
- 50.529266667,
1902
- 50.49,
1903
- 50.49,
1904
- 50.49,
1905
- 50.497933333,
1906
- 50.507933333,
1907
- 50.549666667,
1908
- 50.686933333,
1909
- 50.854866667,
1910
- 50.9614,
1911
- 50.821333333,
1912
- 50.621333333,
1913
- 50.453066667,
1914
- 50.42,
1915
- 50.42,
1916
- 50.427933333,
1917
- 50.437933333,
1918
- 50.447933333,
1919
- 50.465866667,
1920
- 50.525533333,
1921
- 50.5876,
1922
- 50.631733333,
1923
- 50.608266667,
1924
- 50.568266667,
1925
- 50.528266667,
1926
- 50.52,
1927
- 50.52,
1928
- 50.527933333,
1929
- 50.537933333,
1930
- 50.547933333,
1931
- 50.565866667,
1932
- 50.625533333,
1933
- 50.6876,
1934
- 50.7,
1935
- 50.501666667,
1936
- 50.243733333,
1937
- 50.031333333,
1938
- 49.99,
1939
- 49.99,
1940
- 49.99,
1941
- 49.997933333,
1942
- 50.007933333,
1943
- 50.025866667,
1944
- 50.0538,
1945
- 50.0838,
1946
- 50.288333333,
1947
- 51.188866667,
1948
- 52.2668,
1949
- 69.4594,
1950
- 128.4818,
1951
- 252.1254,
1952
- 336.7196,
1953
- 356.03386667,
1954
- 360.55193333,
1955
- 364.3756,
1956
- 365.17126667,
1957
- 365.28126667,
1958
- 365.58846667,
1959
- 366.76293333,
1960
- 368.12486667,
1961
- 369.317,
1962
- 369.72253333,
1963
- 369.94446667,
1964
- 370.13386667,
1965
- 370.1442,
1966
- 370.1142,
1967
- 370.1074,
1968
- 370.20126667,
1969
- 370.31126667,
1970
- 370.49666667,
1971
- 371.016,
1972
- 371.616,
1973
- 372.12126667,
1974
- 372.21,
1975
- 372.21,
1976
- 372.20613333,
1977
- 372.1842,
1978
- 372.15613333,
1979
- 372.15546667,
1980
- 372.24126667,
1981
- 372.35126667,
1982
- 372.4168,
1983
- 372.28326667,
1984
- 372.0952,
1985
- 371.9442,
1986
- 371.92,
1987
- 371.92,
1988
- 371.91613333,
1989
- 371.8942,
1990
- 371.8642,
1991
- 371.8574,
1992
- 371.95126667,
1993
- 372.06126667,
1994
- 372.14033333,
1995
- 372.08453333,
1996
- 372.0026,
1997
- 371.92806667,
1998
- 371.92,
1999
- 371.92,
2000
- 371.91613333,
2001
- 371.8942,
2002
- 371.8642,
2003
- 371.8574,
2004
- 371.95126667,
2005
- 372.06126667,
2006
- 372.14033333,
2007
- 372.08453333,
2008
- 372.0026,
2009
- 371.92806667,
2010
- 371.92,
2011
- 371.92,
2012
- 371.91613333,
2013
- 371.8942,
2014
- 371.8642,
2015
- 371.8574,
2016
- 371.95126667,
2017
- 372.06126667,
2018
- 372.16353333,
2019
- 372.23353333,
2020
- 372.3016,
2021
- 372.35386667,
2022
- 372.37,
2023
- 372.37,
2024
- 372.3642,
2025
- 372.33613333,
2026
- 372.3142,
2027
- 372.30546667,
2028
- 372.39126667,
2029
- 372.50126667,
2030
- 372.58226667,
2031
- 372.5326,
2032
- 372.44453333,
2033
- 372.37806667,
2034
- 372.37,
2035
- 372.37,
2036
- 372.3642,
2037
- 372.33613333,
2038
- 372.3142,
2039
- 372.30546667,
2040
- 372.39126667,
2041
- 372.50126667,
2042
- 372.58226667,
2043
- 372.5326,
2044
- 372.44453333,
2045
- 372.37806667,
2046
- 372.37,
2047
- 372.37,
2048
- 372.3642,
2049
- 372.33613333,
2050
- 372.3142,
2051
- null,
2052
- null
2053
- ],
2054
- "prints": [],
2055
- "last_value": null,
2056
- "minimum_value": null,
2057
- "maximum_value": null,
2058
- "average_value": null
2059
- }
2060
- ],
2061
- "times": [
2062
- "2023-06-14T17:35:00+02:00",
2063
- "2023-06-14T17:40:00+02:00",
2064
- "2023-06-14T17:45:00+02:00",
2065
- "2023-06-14T17:50:00+02:00",
2066
- "2023-06-14T17:55:00+02:00",
2067
- "2023-06-14T18:00:00+02:00",
2068
- "2023-06-14T18:05:00+02:00",
2069
- "2023-06-14T18:10:00+02:00",
2070
- "2023-06-14T18:15:00+02:00",
2071
- "2023-06-14T18:20:00+02:00",
2072
- "2023-06-14T18:25:00+02:00",
2073
- "2023-06-14T18:30:00+02:00",
2074
- "2023-06-14T18:35:00+02:00",
2075
- "2023-06-14T18:40:00+02:00",
2076
- "2023-06-14T18:45:00+02:00",
2077
- "2023-06-14T18:50:00+02:00",
2078
- "2023-06-14T18:55:00+02:00",
2079
- "2023-06-14T19:00:00+02:00",
2080
- "2023-06-14T19:05:00+02:00",
2081
- "2023-06-14T19:10:00+02:00",
2082
- "2023-06-14T19:15:00+02:00",
2083
- "2023-06-14T19:20:00+02:00",
2084
- "2023-06-14T19:25:00+02:00",
2085
- "2023-06-14T19:30:00+02:00",
2086
- "2023-06-14T19:35:00+02:00",
2087
- "2023-06-14T19:40:00+02:00",
2088
- "2023-06-14T19:45:00+02:00",
2089
- "2023-06-14T19:50:00+02:00",
2090
- "2023-06-14T19:55:00+02:00",
2091
- "2023-06-14T20:00:00+02:00",
2092
- "2023-06-14T20:05:00+02:00",
2093
- "2023-06-14T20:10:00+02:00",
2094
- "2023-06-14T20:15:00+02:00",
2095
- "2023-06-14T20:20:00+02:00",
2096
- "2023-06-14T20:25:00+02:00",
2097
- "2023-06-14T20:30:00+02:00",
2098
- "2023-06-14T20:35:00+02:00",
2099
- "2023-06-14T20:40:00+02:00",
2100
- "2023-06-14T20:45:00+02:00",
2101
- "2023-06-14T20:50:00+02:00",
2102
- "2023-06-14T20:55:00+02:00",
2103
- "2023-06-14T21:00:00+02:00",
2104
- "2023-06-14T21:05:00+02:00",
2105
- "2023-06-14T21:10:00+02:00",
2106
- "2023-06-14T21:15:00+02:00",
2107
- "2023-06-14T21:20:00+02:00",
2108
- "2023-06-14T21:25:00+02:00",
2109
- "2023-06-14T21:30:00+02:00",
2110
- "2023-06-14T21:35:00+02:00",
2111
- "2023-06-14T21:40:00+02:00",
2112
- "2023-06-14T21:45:00+02:00",
2113
- "2023-06-14T21:50:00+02:00",
2114
- "2023-06-14T21:55:00+02:00",
2115
- "2023-06-14T22:00:00+02:00",
2116
- "2023-06-14T22:05:00+02:00",
2117
- "2023-06-14T22:10:00+02:00",
2118
- "2023-06-14T22:15:00+02:00",
2119
- "2023-06-14T22:20:00+02:00",
2120
- "2023-06-14T22:25:00+02:00",
2121
- "2023-06-14T22:30:00+02:00",
2122
- "2023-06-14T22:35:00+02:00",
2123
- "2023-06-14T22:40:00+02:00",
2124
- "2023-06-14T22:45:00+02:00",
2125
- "2023-06-14T22:50:00+02:00",
2126
- "2023-06-14T22:55:00+02:00",
2127
- "2023-06-14T23:00:00+02:00",
2128
- "2023-06-14T23:05:00+02:00",
2129
- "2023-06-14T23:10:00+02:00",
2130
- "2023-06-14T23:15:00+02:00",
2131
- "2023-06-14T23:20:00+02:00",
2132
- "2023-06-14T23:25:00+02:00",
2133
- "2023-06-14T23:30:00+02:00",
2134
- "2023-06-14T23:35:00+02:00",
2135
- "2023-06-14T23:40:00+02:00",
2136
- "2023-06-14T23:45:00+02:00",
2137
- "2023-06-14T23:50:00+02:00",
2138
- "2023-06-14T23:55:00+02:00",
2139
- "2023-06-15T00:00:00+02:00",
2140
- "2023-06-15T00:05:00+02:00",
2141
- "2023-06-15T00:10:00+02:00",
2142
- "2023-06-15T00:15:00+02:00",
2143
- "2023-06-15T00:20:00+02:00",
2144
- "2023-06-15T00:25:00+02:00",
2145
- "2023-06-15T00:30:00+02:00",
2146
- "2023-06-15T00:35:00+02:00",
2147
- "2023-06-15T00:40:00+02:00",
2148
- "2023-06-15T00:45:00+02:00",
2149
- "2023-06-15T00:50:00+02:00",
2150
- "2023-06-15T00:55:00+02:00",
2151
- "2023-06-15T01:00:00+02:00",
2152
- "2023-06-15T01:05:00+02:00",
2153
- "2023-06-15T01:10:00+02:00",
2154
- "2023-06-15T01:15:00+02:00",
2155
- "2023-06-15T01:20:00+02:00",
2156
- "2023-06-15T01:25:00+02:00",
2157
- "2023-06-15T01:30:00+02:00",
2158
- "2023-06-15T01:35:00+02:00",
2159
- "2023-06-15T01:40:00+02:00",
2160
- "2023-06-15T01:45:00+02:00",
2161
- "2023-06-15T01:50:00+02:00",
2162
- "2023-06-15T01:55:00+02:00",
2163
- "2023-06-15T02:00:00+02:00",
2164
- "2023-06-15T02:05:00+02:00",
2165
- "2023-06-15T02:10:00+02:00",
2166
- "2023-06-15T02:15:00+02:00",
2167
- "2023-06-15T02:20:00+02:00",
2168
- "2023-06-15T02:25:00+02:00",
2169
- "2023-06-15T02:30:00+02:00",
2170
- "2023-06-15T02:35:00+02:00",
2171
- "2023-06-15T02:40:00+02:00",
2172
- "2023-06-15T02:45:00+02:00",
2173
- "2023-06-15T02:50:00+02:00",
2174
- "2023-06-15T02:55:00+02:00",
2175
- "2023-06-15T03:00:00+02:00",
2176
- "2023-06-15T03:05:00+02:00",
2177
- "2023-06-15T03:10:00+02:00",
2178
- "2023-06-15T03:15:00+02:00",
2179
- "2023-06-15T03:20:00+02:00",
2180
- "2023-06-15T03:25:00+02:00",
2181
- "2023-06-15T03:30:00+02:00",
2182
- "2023-06-15T03:35:00+02:00",
2183
- "2023-06-15T03:40:00+02:00",
2184
- "2023-06-15T03:45:00+02:00",
2185
- "2023-06-15T03:50:00+02:00",
2186
- "2023-06-15T03:55:00+02:00",
2187
- "2023-06-15T04:00:00+02:00",
2188
- "2023-06-15T04:05:00+02:00",
2189
- "2023-06-15T04:10:00+02:00",
2190
- "2023-06-15T04:15:00+02:00",
2191
- "2023-06-15T04:20:00+02:00",
2192
- "2023-06-15T04:25:00+02:00",
2193
- "2023-06-15T04:30:00+02:00",
2194
- "2023-06-15T04:35:00+02:00",
2195
- "2023-06-15T04:40:00+02:00",
2196
- "2023-06-15T04:45:00+02:00",
2197
- "2023-06-15T04:50:00+02:00",
2198
- "2023-06-15T04:55:00+02:00",
2199
- "2023-06-15T05:00:00+02:00",
2200
- "2023-06-15T05:05:00+02:00",
2201
- "2023-06-15T05:10:00+02:00",
2202
- "2023-06-15T05:15:00+02:00",
2203
- "2023-06-15T05:20:00+02:00",
2204
- "2023-06-15T05:25:00+02:00",
2205
- "2023-06-15T05:30:00+02:00",
2206
- "2023-06-15T05:35:00+02:00",
2207
- "2023-06-15T05:40:00+02:00",
2208
- "2023-06-15T05:45:00+02:00",
2209
- "2023-06-15T05:50:00+02:00",
2210
- "2023-06-15T05:55:00+02:00",
2211
- "2023-06-15T06:00:00+02:00",
2212
- "2023-06-15T06:05:00+02:00",
2213
- "2023-06-15T06:10:00+02:00",
2214
- "2023-06-15T06:15:00+02:00",
2215
- "2023-06-15T06:20:00+02:00",
2216
- "2023-06-15T06:25:00+02:00",
2217
- "2023-06-15T06:30:00+02:00",
2218
- "2023-06-15T06:35:00+02:00",
2219
- "2023-06-15T06:40:00+02:00",
2220
- "2023-06-15T06:45:00+02:00",
2221
- "2023-06-15T06:50:00+02:00",
2222
- "2023-06-15T06:55:00+02:00",
2223
- "2023-06-15T07:00:00+02:00",
2224
- "2023-06-15T07:05:00+02:00",
2225
- "2023-06-15T07:10:00+02:00",
2226
- "2023-06-15T07:15:00+02:00",
2227
- "2023-06-15T07:20:00+02:00",
2228
- "2023-06-15T07:25:00+02:00",
2229
- "2023-06-15T07:30:00+02:00",
2230
- "2023-06-15T07:35:00+02:00",
2231
- "2023-06-15T07:40:00+02:00",
2232
- "2023-06-15T07:45:00+02:00",
2233
- "2023-06-15T07:50:00+02:00",
2234
- "2023-06-15T07:55:00+02:00",
2235
- "2023-06-15T08:00:00+02:00",
2236
- "2023-06-15T08:05:00+02:00",
2237
- "2023-06-15T08:10:00+02:00",
2238
- "2023-06-15T08:15:00+02:00",
2239
- "2023-06-15T08:20:00+02:00",
2240
- "2023-06-15T08:25:00+02:00",
2241
- "2023-06-15T08:30:00+02:00",
2242
- "2023-06-15T08:35:00+02:00",
2243
- "2023-06-15T08:40:00+02:00",
2244
- "2023-06-15T08:45:00+02:00",
2245
- "2023-06-15T08:50:00+02:00",
2246
- "2023-06-15T08:55:00+02:00",
2247
- "2023-06-15T09:00:00+02:00",
2248
- "2023-06-15T09:05:00+02:00",
2249
- "2023-06-15T09:10:00+02:00",
2250
- "2023-06-15T09:15:00+02:00",
2251
- "2023-06-15T09:20:00+02:00",
2252
- "2023-06-15T09:25:00+02:00",
2253
- "2023-06-15T09:30:00+02:00",
2254
- "2023-06-15T09:35:00+02:00",
2255
- "2023-06-15T09:40:00+02:00",
2256
- "2023-06-15T09:45:00+02:00",
2257
- "2023-06-15T09:50:00+02:00",
2258
- "2023-06-15T09:55:00+02:00",
2259
- "2023-06-15T10:00:00+02:00",
2260
- "2023-06-15T10:05:00+02:00",
2261
- "2023-06-15T10:10:00+02:00",
2262
- "2023-06-15T10:15:00+02:00",
2263
- "2023-06-15T10:20:00+02:00",
2264
- "2023-06-15T10:25:00+02:00",
2265
- "2023-06-15T10:30:00+02:00",
2266
- "2023-06-15T10:35:00+02:00",
2267
- "2023-06-15T10:40:00+02:00",
2268
- "2023-06-15T10:45:00+02:00",
2269
- "2023-06-15T10:50:00+02:00",
2270
- "2023-06-15T10:55:00+02:00",
2271
- "2023-06-15T11:00:00+02:00",
2272
- "2023-06-15T11:05:00+02:00",
2273
- "2023-06-15T11:10:00+02:00",
2274
- "2023-06-15T11:15:00+02:00",
2275
- "2023-06-15T11:20:00+02:00",
2276
- "2023-06-15T11:25:00+02:00",
2277
- "2023-06-15T11:30:00+02:00",
2278
- "2023-06-15T11:35:00+02:00",
2279
- "2023-06-15T11:40:00+02:00",
2280
- "2023-06-15T11:45:00+02:00",
2281
- "2023-06-15T11:50:00+02:00",
2282
- "2023-06-15T11:55:00+02:00",
2283
- "2023-06-15T12:00:00+02:00",
2284
- "2023-06-15T12:05:00+02:00",
2285
- "2023-06-15T12:10:00+02:00",
2286
- "2023-06-15T12:15:00+02:00",
2287
- "2023-06-15T12:20:00+02:00",
2288
- "2023-06-15T12:25:00+02:00",
2289
- "2023-06-15T12:30:00+02:00",
2290
- "2023-06-15T12:35:00+02:00",
2291
- "2023-06-15T12:40:00+02:00",
2292
- "2023-06-15T12:45:00+02:00",
2293
- "2023-06-15T12:50:00+02:00",
2294
- "2023-06-15T12:55:00+02:00",
2295
- "2023-06-15T13:00:00+02:00",
2296
- "2023-06-15T13:05:00+02:00",
2297
- "2023-06-15T13:10:00+02:00",
2298
- "2023-06-15T13:15:00+02:00",
2299
- "2023-06-15T13:20:00+02:00",
2300
- "2023-06-15T13:25:00+02:00",
2301
- "2023-06-15T13:30:00+02:00",
2302
- "2023-06-15T13:35:00+02:00",
2303
- "2023-06-15T13:40:00+02:00",
2304
- "2023-06-15T13:45:00+02:00",
2305
- "2023-06-15T13:50:00+02:00",
2306
- "2023-06-15T13:55:00+02:00",
2307
- "2023-06-15T14:00:00+02:00",
2308
- "2023-06-15T14:05:00+02:00",
2309
- "2023-06-15T14:10:00+02:00",
2310
- "2023-06-15T14:15:00+02:00",
2311
- "2023-06-15T14:20:00+02:00",
2312
- "2023-06-15T14:25:00+02:00",
2313
- "2023-06-15T14:30:00+02:00",
2314
- "2023-06-15T14:35:00+02:00",
2315
- "2023-06-15T14:40:00+02:00",
2316
- "2023-06-15T14:45:00+02:00",
2317
- "2023-06-15T14:50:00+02:00",
2318
- "2023-06-15T14:55:00+02:00",
2319
- "2023-06-15T15:00:00+02:00",
2320
- "2023-06-15T15:05:00+02:00",
2321
- "2023-06-15T15:10:00+02:00",
2322
- "2023-06-15T15:15:00+02:00",
2323
- "2023-06-15T15:20:00+02:00",
2324
- "2023-06-15T15:25:00+02:00",
2325
- "2023-06-15T15:30:00+02:00",
2326
- "2023-06-15T15:35:00+02:00",
2327
- "2023-06-15T15:40:00+02:00",
2328
- "2023-06-15T15:45:00+02:00",
2329
- "2023-06-15T15:50:00+02:00",
2330
- "2023-06-15T15:55:00+02:00",
2331
- "2023-06-15T16:00:00+02:00",
2332
- "2023-06-15T16:05:00+02:00",
2333
- "2023-06-15T16:10:00+02:00",
2334
- "2023-06-15T16:15:00+02:00",
2335
- "2023-06-15T16:20:00+02:00",
2336
- "2023-06-15T16:25:00+02:00",
2337
- "2023-06-15T16:30:00+02:00",
2338
- "2023-06-15T16:35:00+02:00",
2339
- "2023-06-15T16:40:00+02:00",
2340
- "2023-06-15T16:45:00+02:00",
2341
- "2023-06-15T16:50:00+02:00",
2342
- "2023-06-15T16:55:00+02:00",
2343
- "2023-06-15T17:00:00+02:00",
2344
- "2023-06-15T17:05:00+02:00",
2345
- "2023-06-15T17:10:00+02:00",
2346
- "2023-06-15T17:15:00+02:00",
2347
- "2023-06-15T17:20:00+02:00",
2348
- "2023-06-15T17:25:00+02:00",
2349
- "2023-06-15T17:30:00+02:00",
2350
- "2023-06-15T17:35:00+02:00"
2351
- ]
2352
- }