@centreon/ui 24.4.13 → 24.4.14

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 (544) 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 +34 -104
  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.tsx +3 -12
  10. package/src/Button/Save/StartIcon.tsx +3 -3
  11. package/src/Button/Save/index.stories.tsx +5 -10
  12. package/src/Button/Save/index.tsx +1 -1
  13. package/src/Dialog/Confirm/index.tsx +4 -17
  14. package/src/Dialog/Duplicate/index.test.tsx +1 -1
  15. package/src/Dialog/index.tsx +2 -14
  16. package/src/FallbackPage/FallbackPage.tsx +2 -2
  17. package/src/FileDropZone/index.tsx +2 -4
  18. package/src/Form/CollapsibleGroup.tsx +5 -15
  19. package/src/Form/FormButtons.tsx +4 -2
  20. package/src/Form/Inputs/Autocomplete.tsx +1 -1
  21. package/src/Form/Inputs/ConnectedAutocomplete.tsx +1 -3
  22. package/src/Form/Inputs/Grid.tsx +2 -4
  23. package/src/Form/Inputs/Radio.tsx +5 -16
  24. package/src/Form/Inputs/Switch.tsx +1 -1
  25. package/src/Form/Inputs/Text.tsx +7 -18
  26. package/src/Form/Inputs/index.tsx +16 -34
  27. package/src/Form/Inputs/models.ts +4 -28
  28. package/src/Form/{Form.stories.tsx → index.stories.tsx} +3 -2
  29. package/src/Form/{Form.tsx → index.tsx} +16 -38
  30. package/src/Form/storiesData.tsx +3 -50
  31. package/src/Home.stories.mdx +84 -1
  32. package/src/Image/Image.tsx +1 -11
  33. package/src/Image/index.stories.tsx +2 -2
  34. package/src/Image/index.test.tsx +3 -3
  35. package/src/InputField/Search/PersistentTooltip.tsx +6 -10
  36. package/src/InputField/Select/Autocomplete/Connected/Multi/index.test.tsx +22 -4
  37. package/src/InputField/Select/Autocomplete/Connected/index.stories.tsx +3 -0
  38. package/src/InputField/Select/Autocomplete/Connected/index.test.tsx +7 -4
  39. package/src/InputField/Select/Autocomplete/Connected/index.tsx +12 -44
  40. package/src/InputField/Select/Autocomplete/Draggable/SortableList.tsx +1 -1
  41. package/src/InputField/Select/Autocomplete/Draggable/SortableListContent.tsx +1 -1
  42. package/src/InputField/Select/Autocomplete/Draggable/index.stories.tsx +2 -0
  43. package/src/InputField/Select/Autocomplete/Draggable/index.tsx +1 -1
  44. package/src/InputField/Select/Autocomplete/Multi/index.tsx +15 -32
  45. package/src/InputField/Select/Autocomplete/index.stories.tsx +10 -1
  46. package/src/InputField/Select/Autocomplete/index.tsx +2 -5
  47. package/src/InputField/Select/IconPopover/index.tsx +2 -2
  48. package/src/InputField/Select/index.tsx +2 -3
  49. package/src/InputField/Text/index.tsx +9 -19
  50. package/src/Listing/ActionBar/index.tsx +8 -15
  51. package/src/Listing/Cell/DataCell.tsx +68 -43
  52. package/src/Listing/Cell/index.tsx +8 -88
  53. package/src/Listing/Header/{_internals/PredefinedSelectionList.tsx → PredefinedSelectionList.tsx} +1 -1
  54. package/src/Listing/Header/{Cell/ListingHeaderCell.tsx → SortableCell/Content.tsx} +83 -18
  55. package/src/Listing/Header/SortableCell/DraggableIcon.tsx +41 -0
  56. package/src/Listing/Header/{ListingHeader.tsx → index.tsx} +106 -29
  57. package/src/Listing/{Row/Row.tsx → Row.tsx} +11 -12
  58. package/src/Listing/Skeleton.tsx +11 -0
  59. package/src/Listing/index.stories.tsx +40 -155
  60. package/src/Listing/index.test.tsx +1 -1
  61. package/src/Listing/index.tsx +263 -217
  62. package/src/Listing/models.ts +0 -1
  63. package/src/Listing/tableAtoms.ts +10 -15
  64. package/src/Listing/useStyleTable.ts +9 -9
  65. package/src/ListingPage/index.stories.tsx +8 -21
  66. package/src/ListingPage/index.tsx +38 -20
  67. package/src/Logo/CentreonLogo.tsx +2 -2
  68. package/src/Module/LicensedModule/LicenseCheck/index.stories.tsx +2 -0
  69. package/src/Panel/Memoized.tsx +1 -1
  70. package/src/Panel/Section/index.test.tsx +1 -1
  71. package/src/Panel/Section/index.tsx +1 -1
  72. package/src/Panel/index.tsx +6 -10
  73. package/src/PopoverMenu/index.tsx +4 -18
  74. package/src/RichTextEditor/ContentEditable.tsx +24 -70
  75. package/src/RichTextEditor/RichTextEditor.tsx +47 -172
  76. package/src/RichTextEditor/index.stories.tsx +0 -14
  77. package/src/RichTextEditor/plugins/AutoLinkPlugin/index.tsx +5 -53
  78. package/src/RichTextEditor/plugins/FloatingLinkEditorPlugin.tsx +16 -54
  79. package/src/RichTextEditor/plugins/ToolbarPlugin/FormatButtons.tsx +92 -31
  80. package/src/RichTextEditor/plugins/ToolbarPlugin/UndoRedoButtons.tsx +3 -13
  81. package/src/RichTextEditor/plugins/ToolbarPlugin/index.tsx +10 -35
  82. package/src/RichTextEditor/translatedLabels.ts +0 -3
  83. package/src/Snackbar/index.tsx +4 -14
  84. package/src/Snackbar/useSnackbar.tsx +1 -5
  85. package/src/SortableItems/SortableItem.tsx +2 -3
  86. package/src/SortableItems/index.tsx +7 -2
  87. package/src/ThemeProvider/index.tsx +10 -42
  88. package/src/ThemeProvider/palettes.ts +201 -422
  89. package/src/Typography/{Typography.stories.tsx → index.stories.tsx} +5 -5
  90. package/src/WallpaperPage/index.stories.tsx +1 -1
  91. package/src/Wizard/ActionsBar.test.tsx +1 -1
  92. package/src/Wizard/WizardContent.tsx +3 -2
  93. package/src/Wizard/index.stories.tsx +18 -5
  94. package/src/Wizard/index.test.tsx +1 -1
  95. package/src/Wizard/index.tsx +5 -20
  96. package/src/Wizard/models.ts +0 -7
  97. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-loading-with-no-data-1-snap.png +0 -0
  98. package/src/api/QueryProvider.tsx +1 -1
  99. package/src/api/TestQueryProvider.tsx +1 -2
  100. package/src/api/buildListingEndpoint/getSearchQueryParameterValue.ts +26 -35
  101. package/src/api/buildListingEndpoint/index.test.ts +2 -2
  102. package/src/api/buildListingEndpoint/index.ts +1 -1
  103. package/src/api/buildListingEndpoint/models.ts +2 -2
  104. package/src/api/customFetch.ts +3 -22
  105. package/src/api/useFetchQuery/index.ts +37 -56
  106. package/src/api/useMutationQuery/index.ts +22 -70
  107. package/src/api/useRequest/index.ts +6 -9
  108. package/src/index.ts +21 -31
  109. package/src/queryParameters/url/index.ts +1 -5
  110. package/src/storyshots.test.js +52 -0
  111. package/{test → src}/testRenderer.tsx +1 -1
  112. package/src/utils/getNormalizedId.ts +3 -1
  113. package/src/utils/useCopyToClipboard.ts +3 -2
  114. package/src/utils/useDebounce.ts +5 -8
  115. package/src/utils/useDeepCallback.ts +3 -1
  116. package/src/utils/useDeepMemo.ts +3 -1
  117. package/src/utils/useIntersectionObserver.ts +5 -5
  118. package/src/utils/useKeyObserver.tsx +3 -1
  119. package/src/utils/useLocaleDateTimeFormat/index.test.tsx +1 -1
  120. package/src/utils/useLocaleDateTimeFormat/index.ts +2 -4
  121. package/src/utils/useLocaleDateTimeFormat/localeFallback.test.tsx +1 -1
  122. package/src/utils/useMemoComponent.ts +1 -1
  123. package/testRunner.js +36 -0
  124. package/tsconfig.json +29 -0
  125. package/types/declarations.d.ts +9 -0
  126. package/public/README.md +0 -39
  127. package/public/mockServiceWorker.js +0 -303
  128. package/src/@assets/README.md +0 -5
  129. package/src/@assets/brand/centreon-logo-one-line-dark.svg +0 -1
  130. package/src/@assets/brand/centreon-logo-one-line-light.svg +0 -1
  131. package/src/@assets/icons/downtime.icon.svg +0 -1
  132. package/src/@types/aria-attributes.d.ts +0 -10
  133. package/src/@types/data-attributes.d.ts +0 -3
  134. package/src/@types/globals.d.ts +0 -9
  135. package/src/@types/vite-env.d.ts +0 -2
  136. package/src/ActionsList/ActionsList.styles.ts +0 -116
  137. package/src/ActionsList/models.ts +0 -8
  138. package/src/Checkbox/Checkbox.tsx +0 -109
  139. package/src/Checkbox/CheckboxGroup/index.stories.tsx +0 -41
  140. package/src/Checkbox/CheckboxGroup/index.tsx +0 -75
  141. package/src/Checkbox/index.stories.tsx +0 -39
  142. package/src/Checkbox/index.tsx +0 -2
  143. package/src/Dashboard/Dashboard.styles.ts +0 -108
  144. package/src/Dashboard/DashboardLayout.stories.tsx +0 -104
  145. package/src/Dashboard/Grid.tsx +0 -70
  146. package/src/Dashboard/Item.tsx +0 -100
  147. package/src/Dashboard/Layout.tsx +0 -79
  148. package/src/Dashboard/index.tsx +0 -9
  149. package/src/Dashboard/utils.ts +0 -28
  150. package/src/Form/Form.cypress.spec.tsx +0 -133
  151. package/src/Form/Form.styles.ts +0 -11
  152. package/src/Form/Inputs/Checkbox.tsx +0 -57
  153. package/src/Form/Inputs/CheckboxGroup.tsx +0 -73
  154. package/src/Form/Inputs/List/Content.tsx +0 -62
  155. package/src/Form/Inputs/List/List.styles.ts +0 -29
  156. package/src/Form/Inputs/List/List.tsx +0 -58
  157. package/src/Form/Inputs/List/useList.ts +0 -81
  158. package/src/Form/index.ts +0 -1
  159. package/src/Graph/Gauge/AnimatedPie.tsx +0 -102
  160. package/src/Graph/Gauge/Gauge.stories.tsx +0 -159
  161. package/src/Graph/Gauge/Gauge.tsx +0 -41
  162. package/src/Graph/Gauge/PieData.tsx +0 -63
  163. package/src/Graph/Gauge/ResponsiveGauge.tsx +0 -148
  164. package/src/Graph/Gauge/Thresholds.tsx +0 -117
  165. package/src/Graph/Gauge/index.ts +0 -1
  166. package/src/Graph/Gauge/models.ts +0 -20
  167. package/src/Graph/HeatMap/HeatMap.stories.tsx +0 -105
  168. package/src/Graph/HeatMap/HeatMap.styles.tsx +0 -29
  169. package/src/Graph/HeatMap/HeatMap.tsx +0 -12
  170. package/src/Graph/HeatMap/HeatMapData.json +0 -137
  171. package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +0 -98
  172. package/src/Graph/HeatMap/index.ts +0 -1
  173. package/src/Graph/HeatMap/model.ts +0 -33
  174. package/src/Graph/LineChart/BasicComponents/Axes/UnitLabel.tsx +0 -20
  175. package/src/Graph/LineChart/BasicComponents/Axes/index.tsx +0 -88
  176. package/src/Graph/LineChart/BasicComponents/Axes/models.ts +0 -26
  177. package/src/Graph/LineChart/BasicComponents/Axes/useAxisY.ts +0 -100
  178. package/src/Graph/LineChart/BasicComponents/Grids/index.tsx +0 -20
  179. package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/index.tsx +0 -99
  180. package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/useRegularLines.ts +0 -15
  181. package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/index.tsx +0 -81
  182. package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/useStackedLines.ts +0 -39
  183. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/BasicThreshold.tsx +0 -53
  184. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/Circle.tsx +0 -43
  185. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithPatternLines.tsx +0 -78
  186. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithVariation.tsx +0 -63
  187. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/helpers/index.ts +0 -69
  188. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/index.tsx +0 -143
  189. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/models.ts +0 -105
  190. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useCoordinateCircle.ts +0 -46
  191. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useScaleThreshold.ts +0 -171
  192. package/src/Graph/LineChart/BasicComponents/Lines/index.tsx +0 -189
  193. package/src/Graph/LineChart/BasicComponents/Lines/models.ts +0 -45
  194. package/src/Graph/LineChart/BasicComponents/LoadingProgress.tsx +0 -46
  195. package/src/Graph/LineChart/BasicComponents/ThresholdLine.tsx +0 -64
  196. package/src/Graph/LineChart/BasicComponents/Thresholds.tsx +0 -77
  197. package/src/Graph/LineChart/BasicComponents/useFilterLines.ts +0 -60
  198. package/src/Graph/LineChart/Header/index.tsx +0 -65
  199. package/src/Graph/LineChart/Icons/Downtime.tsx +0 -9
  200. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/GuidingLines.tsx +0 -45
  201. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/RegularAnchorPoint.tsx +0 -66
  202. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/StackedAnchorPoint.tsx +0 -76
  203. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/TooltipAnchorPoint.tsx +0 -96
  204. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/index.tsx +0 -20
  205. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/models.ts +0 -62
  206. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTickGraph.ts +0 -94
  207. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTooltipAnchorPoint.ts +0 -107
  208. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Area.tsx +0 -114
  209. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Line.tsx +0 -103
  210. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/index.tsx +0 -80
  211. package/src/Graph/LineChart/InteractiveComponents/Annotations/Area/Downtime.tsx +0 -27
  212. package/src/Graph/LineChart/InteractiveComponents/Annotations/EventAnnotations.tsx +0 -61
  213. package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Acknowledgement.tsx +0 -27
  214. package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Comments.tsx +0 -25
  215. package/src/Graph/LineChart/InteractiveComponents/Annotations/annotationsAtoms.ts +0 -183
  216. package/src/Graph/LineChart/InteractiveComponents/Annotations/index.tsx +0 -49
  217. package/src/Graph/LineChart/InteractiveComponents/Annotations/models.ts +0 -25
  218. package/src/Graph/LineChart/InteractiveComponents/Annotations/useAnnotation.ts +0 -56
  219. package/src/Graph/LineChart/InteractiveComponents/Bar.tsx +0 -21
  220. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftIcon.tsx +0 -62
  221. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftZone.tsx +0 -74
  222. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/index.tsx +0 -85
  223. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/models.ts +0 -12
  224. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/useTimeShiftZones.ts +0 -72
  225. package/src/Graph/LineChart/InteractiveComponents/Tooltip/index.tsx +0 -59
  226. package/src/Graph/LineChart/InteractiveComponents/Tooltip/models.ts +0 -9
  227. package/src/Graph/LineChart/InteractiveComponents/Tooltip/useGraphTooltip.ts +0 -67
  228. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/index.tsx +0 -38
  229. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/models.ts +0 -9
  230. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/useZoomPreview.ts +0 -107
  231. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/zoomPreviewAtoms.ts +0 -3
  232. package/src/Graph/LineChart/InteractiveComponents/index.tsx +0 -168
  233. package/src/Graph/LineChart/InteractiveComponents/interactionWithGraphAtoms.ts +0 -52
  234. package/src/Graph/LineChart/Legend/InteractiveValue.tsx +0 -22
  235. package/src/Graph/LineChart/Legend/Legend.styles.ts +0 -117
  236. package/src/Graph/LineChart/Legend/LegendContent.tsx +0 -33
  237. package/src/Graph/LineChart/Legend/LegendHeader.tsx +0 -93
  238. package/src/Graph/LineChart/Legend/index.tsx +0 -201
  239. package/src/Graph/LineChart/Legend/models.ts +0 -16
  240. package/src/Graph/LineChart/Legend/useInteractiveValues.ts +0 -99
  241. package/src/Graph/LineChart/Legend/useLegend.ts +0 -104
  242. package/src/Graph/LineChart/LineChart.styles.ts +0 -45
  243. package/src/Graph/LineChart/LineChart.tsx +0 -317
  244. package/src/Graph/LineChart/LoadingSkeleton.tsx +0 -44
  245. package/src/Graph/LineChart/common/index.ts +0 -35
  246. package/src/Graph/LineChart/graphAtoms.ts +0 -3
  247. package/src/Graph/LineChart/helpers/doc.ts +0 -563
  248. package/src/Graph/LineChart/helpers/index.ts +0 -63
  249. package/src/Graph/LineChart/index.stories.tsx +0 -480
  250. package/src/Graph/LineChart/index.tsx +0 -115
  251. package/src/Graph/LineChart/mockedData/annotationData.json +0 -326
  252. package/src/Graph/LineChart/mockedData/exclusionPeriodFirstPeriod.json +0 -588
  253. package/src/Graph/LineChart/mockedData/exclusionPeriodSecondPeriod.json +0 -588
  254. package/src/Graph/LineChart/mockedData/exclusionPeriodThirdPeriod.json +0 -581
  255. package/src/Graph/LineChart/mockedData/lastDay.json +0 -1326
  256. package/src/Graph/LineChart/mockedData/lastDayAreaStack.json +0 -3106
  257. package/src/Graph/LineChart/mockedData/lastDayForward.json +0 -1338
  258. package/src/Graph/LineChart/mockedData/lastDayThreshold.json +0 -2352
  259. package/src/Graph/LineChart/mockedData/lastMonth.json +0 -1674
  260. package/src/Graph/LineChart/mockedData/lastWeek.json +0 -2202
  261. package/src/Graph/LineChart/mockedData/zoomPreview.json +0 -742
  262. package/src/Graph/LineChart/models.ts +0 -146
  263. package/src/Graph/LineChart/translatedLabels.ts +0 -9
  264. package/src/Graph/LineChart/useLineChartData.ts +0 -49
  265. package/src/Graph/LineChart/useLineChartIntersection.ts +0 -36
  266. package/src/Graph/SingleBar/ResponsiveSingleBar.tsx +0 -197
  267. package/src/Graph/SingleBar/SingleBar.stories.tsx +0 -204
  268. package/src/Graph/SingleBar/SingleBar.tsx +0 -25
  269. package/src/Graph/SingleBar/ThresholdLine.tsx +0 -103
  270. package/src/Graph/SingleBar/Thresholds.tsx +0 -50
  271. package/src/Graph/SingleBar/index.ts +0 -1
  272. package/src/Graph/SingleBar/models.ts +0 -10
  273. package/src/Graph/Text/Text.stories.tsx +0 -123
  274. package/src/Graph/Text/Text.styles.ts +0 -17
  275. package/src/Graph/Text/Text.tsx +0 -91
  276. package/src/Graph/Text/index.ts +0 -1
  277. package/src/Graph/common/margins.ts +0 -1
  278. package/src/Graph/common/models.ts +0 -19
  279. package/src/Graph/common/timeSeries/index.test.ts +0 -624
  280. package/src/Graph/common/timeSeries/index.ts +0 -626
  281. package/src/Graph/common/timeSeries/models.ts +0 -129
  282. package/src/Graph/common/utils.ts +0 -75
  283. package/src/Graph/index.ts +0 -5
  284. package/src/InputField/Select/Autocomplete/Connected/Multi/MultiConnectedAutocompleteField.cypress.spec.tsx +0 -127
  285. package/src/InputField/Select/Autocomplete/Connected/Multi/utils/index.ts +0 -22
  286. package/src/Listing/Cell/DataCell.styles.ts +0 -24
  287. package/src/Listing/EmptyResult/EmptyResult.tsx +0 -13
  288. package/src/Listing/Header/Cell/ListingHeaderCell.styles.ts +0 -71
  289. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.styles.ts +0 -26
  290. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.tsx +0 -70
  291. package/src/Listing/Header/ListingHeader.styles.ts +0 -16
  292. package/src/Listing/Header/_internals/DraggableIconButton.tsx +0 -35
  293. package/src/Listing/Header/index.ts +0 -1
  294. package/src/Listing/Listing.cypress.spec.tsx +0 -122
  295. package/src/Listing/Listing.styles.ts +0 -80
  296. package/src/Listing/ListingDocs.mdx +0 -61
  297. package/src/Listing/Row/EmptyRow.styles.ts +0 -14
  298. package/src/Listing/Row/EmptyRow.tsx +0 -30
  299. package/src/Listing/Row/SkeletonLoaderRows.tsx +0 -23
  300. package/src/ParentSize/ParentSize.tsx +0 -24
  301. package/src/ParentSize/index.ts +0 -1
  302. package/src/RichTextEditor/RichTextEditor.cypress.spec.tsx +0 -408
  303. package/src/RichTextEditor/plugins/ToolbarPlugin/AlignPicker.tsx +0 -116
  304. package/src/RichTextEditor/plugins/ToolbarPlugin/BlockButtons.tsx +0 -155
  305. package/src/RichTextEditor/plugins/ToolbarPlugin/LinkButton.tsx +0 -106
  306. package/src/RichTextEditor/plugins/ToolbarPlugin/ListButton.tsx +0 -155
  307. package/src/RichTextEditor/plugins/ToolbarPlugin/MacrosButton.tsx +0 -75
  308. package/src/RichTextEditor/plugins/ToolbarPlugin/ToolbarPlugin.styles.ts +0 -32
  309. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.styles.ts +0 -51
  310. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.tsx +0 -95
  311. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/ErrorText.tsx +0 -14
  312. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/PickersStartEndDate.tsx +0 -171
  313. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/index.tsx +0 -76
  314. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/models.ts +0 -59
  315. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/usePickersStartEndDate.ts +0 -82
  316. package/src/TimePeriods/CustomTimePeriod/SimpleCustomTimePeriod.tsx +0 -28
  317. package/src/TimePeriods/CustomTimePeriod/index.tsx +0 -66
  318. package/src/TimePeriods/DateTimePickerInput.tsx +0 -77
  319. package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +0 -65
  320. package/src/TimePeriods/SelectedTimePeriod.tsx +0 -102
  321. package/src/TimePeriods/TimePeriods.cypress.spec.tsx +0 -486
  322. package/src/TimePeriods/TimePeriods.styles.ts +0 -22
  323. package/src/TimePeriods/helpers/index.ts +0 -26
  324. package/src/TimePeriods/index.stories.tsx +0 -121
  325. package/src/TimePeriods/index.tsx +0 -79
  326. package/src/TimePeriods/mockedData.ts +0 -12
  327. package/src/TimePeriods/models.ts +0 -97
  328. package/src/TimePeriods/timePeriodsAtoms.ts +0 -102
  329. package/src/TimePeriods/translatedLabels.ts +0 -9
  330. package/src/TimePeriods/useSortTimePeriods.ts +0 -31
  331. package/src/TimePeriods/useTimePeriod.ts +0 -49
  332. package/src/Typography/EllipsisTypography.tsx +0 -18
  333. package/src/Typography/FluidTypography/index.stories.tsx +0 -63
  334. package/src/Typography/FluidTypography/index.tsx +0 -51
  335. package/src/Typography/FluidTypography/useFluidResizeObserver.ts +0 -56
  336. package/src/Typography/Subtitle.tsx +0 -55
  337. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-normal-1-snap.png +0 -0
  338. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-item-header-1-snap.png +0 -0
  339. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-many-panels-1-snap.png +0 -0
  340. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-basic-1-snap.png +0 -0
  341. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-20-px-height-1-snap.png +0 -0
  342. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-200-px-width-1-snap.png +0 -0
  343. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-heading-5-variant-1-snap.png +0 -0
  344. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-long-text-1-snap.png +0 -0
  345. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-as-empty-state-1-snap.png +0 -0
  346. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-with-editable-and-sortable-columns-1-snap.png +0 -0
  347. package/src/api/useGraphQuery/index.ts +0 -166
  348. package/src/api/useGraphQuery/models.ts +0 -15
  349. package/src/base/tokens/README.md +0 -3
  350. package/src/base/tokens/source/$metadata.json +0 -5
  351. package/src/base/tokens/source/base.json +0 -142
  352. package/src/base/tokens/themes/base.tokens.d.ts +0 -38
  353. package/src/base/tokens/themes/base.tokens.json +0 -695
  354. package/src/base/tokens/themes/base.tokens.ts +0 -38
  355. package/src/base/tokens/themes/ui-dark.tokens.d.ts +0 -38
  356. package/src/base/tokens/themes/ui-dark.tokens.json +0 -695
  357. package/src/base/tokens/themes/ui-dark.tokens.ts +0 -38
  358. package/src/base/tokens/themes/ui-light.tokens.d.ts +0 -38
  359. package/src/base/tokens/themes/ui-light.tokens.json +0 -695
  360. package/src/base/tokens/themes/ui-light.tokens.ts +0 -38
  361. package/src/components/Avatar/Avatar.stories.tsx +0 -23
  362. package/src/components/Avatar/Avatar.styles.ts +0 -11
  363. package/src/components/Avatar/Avatar.tsx +0 -32
  364. package/src/components/Avatar/index.ts +0 -1
  365. package/src/components/Button/Button.stories.tsx +0 -34
  366. package/src/components/Button/Button.styles.ts +0 -44
  367. package/src/components/Button/Button.tsx +0 -78
  368. package/src/components/Button/Icon/IconButton.stories.tsx +0 -18
  369. package/src/components/Button/Icon/IconButton.styles.ts +0 -14
  370. package/src/components/Button/Icon/IconButton.tsx +0 -62
  371. package/src/components/Button/Icon/index.tsx +0 -1
  372. package/src/components/Button/index.ts +0 -2
  373. package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +0 -25
  374. package/src/components/CollapsibleItem/CollapsibleItem.tsx +0 -47
  375. package/src/components/CollapsibleItem/index.ts +0 -1
  376. package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +0 -15
  377. package/src/components/DataTable/DataListing.tsx +0 -6
  378. package/src/components/DataTable/DataTable.cypress.spec.tsx +0 -193
  379. package/src/components/DataTable/DataTable.stories.tsx +0 -91
  380. package/src/components/DataTable/DataTable.styles.ts +0 -30
  381. package/src/components/DataTable/DataTable.tsx +0 -35
  382. package/src/components/DataTable/EmptyState/DataTableEmptyState.stories.tsx +0 -21
  383. package/src/components/DataTable/EmptyState/DataTableEmptyState.styles.ts +0 -26
  384. package/src/components/DataTable/EmptyState/DataTableEmptyState.tsx +0 -53
  385. package/src/components/DataTable/Item/DataTableItem.stories.tsx +0 -25
  386. package/src/components/DataTable/Item/DataTableItem.styles.ts +0 -38
  387. package/src/components/DataTable/Item/DataTableItem.tsx +0 -123
  388. package/src/components/DataTable/Item/DataTableItemSkeleton.tsx +0 -13
  389. package/src/components/DataTable/index.ts +0 -12
  390. package/src/components/Form/AccessRights/AccessRights.resource.ts +0 -45
  391. package/src/components/Form/AccessRights/AccessRightsForm.stories.tsx +0 -59
  392. package/src/components/Form/AccessRights/AccessRightsForm.styles.ts +0 -21
  393. package/src/components/Form/AccessRights/AccessRightsForm.tsx +0 -67
  394. package/src/components/Form/AccessRights/AccessRightsFormActions.tsx +0 -80
  395. package/src/components/Form/AccessRights/Input/AddAction.tsx +0 -31
  396. package/src/components/Form/AccessRights/Input/ContactAccessRightInput.stories.tsx +0 -54
  397. package/src/components/Form/AccessRights/Input/ContactAccessRightInput.tsx +0 -72
  398. package/src/components/Form/AccessRights/Input/ContactAccessRightsInput.styles.ts +0 -22
  399. package/src/components/Form/AccessRights/Input/ContactInputField.tsx +0 -105
  400. package/src/components/Form/AccessRights/Input/RoleInputField.tsx +0 -29
  401. package/src/components/Form/AccessRights/List/ContactAccessRightsList.stories.tsx +0 -97
  402. package/src/components/Form/AccessRights/List/ContactAccessRightsList.styles.ts +0 -71
  403. package/src/components/Form/AccessRights/List/ContactAccessRightsList.tsx +0 -51
  404. package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.stories.tsx +0 -116
  405. package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.tsx +0 -118
  406. package/src/components/Form/AccessRights/List/ContactAccessRightsListItemSkeleton.tsx +0 -26
  407. package/src/components/Form/AccessRights/List/ContactAccessRightsListSkeleton.tsx +0 -28
  408. package/src/components/Form/AccessRights/Stats/AccessRightsStats.styles.ts +0 -18
  409. package/src/components/Form/AccessRights/Stats/AccessRightsStats.tsx +0 -41
  410. package/src/components/Form/AccessRights/__fixtures__/contactAccessRight.mock.ts +0 -54
  411. package/src/components/Form/AccessRights/common/GroupLabel.styles.ts +0 -18
  412. package/src/components/Form/AccessRights/common/GroupLabel.tsx +0 -15
  413. package/src/components/Form/AccessRights/common/Input.styles.ts +0 -48
  414. package/src/components/Form/AccessRights/common/RoleInputSelect.styles.ts +0 -11
  415. package/src/components/Form/AccessRights/common/RoleInputSelect.tsx +0 -57
  416. package/src/components/Form/AccessRights/index.ts +0 -3
  417. package/src/components/Form/AccessRights/useAccessRightsForm.test.tsx +0 -531
  418. package/src/components/Form/AccessRights/useAccessRightsForm.tsx +0 -282
  419. package/src/components/Form/AccessRights/useAccessRightsForm.utils.ts +0 -41
  420. package/src/components/Form/Dashboard/Dashboard.resource.ts +0 -9
  421. package/src/components/Form/Dashboard/DashboardForm.stories.ts +0 -39
  422. package/src/components/Form/Dashboard/DashboardForm.styles.ts +0 -21
  423. package/src/components/Form/Dashboard/DashboardForm.tsx +0 -137
  424. package/src/components/Form/Dashboard/GlobalRefreshFieldOption.tsx +0 -59
  425. package/src/components/Form/Dashboard/index.ts +0 -2
  426. package/src/components/Form/Dashboard/translatedLabels.ts +0 -9
  427. package/src/components/Form/Form.models.ts +0 -1
  428. package/src/components/Form/Form.resource.ts +0 -1
  429. package/src/components/Form/Form.styles.ts +0 -17
  430. package/src/components/Form/FormActions.tsx +0 -57
  431. package/src/components/Form/index.ts +0 -3
  432. package/src/components/Header/PageHeader/PageHeader.stories.tsx +0 -97
  433. package/src/components/Header/PageHeader/PageHeader.styles.ts +0 -126
  434. package/src/components/Header/PageHeader/PageHeader.tsx +0 -15
  435. package/src/components/Header/PageHeader/PageHeaderActions.tsx +0 -17
  436. package/src/components/Header/PageHeader/PageHeaderMain.tsx +0 -15
  437. package/src/components/Header/PageHeader/PageHeaderMenu.tsx +0 -15
  438. package/src/components/Header/PageHeader/PageHeaderMessage.tsx +0 -32
  439. package/src/components/Header/PageHeader/PageHeaderTitle.tsx +0 -47
  440. package/src/components/Header/PageHeader/index.ts +0 -14
  441. package/src/components/Header/index.ts +0 -1
  442. package/src/components/Icon/Icon.styles.ts +0 -0
  443. package/src/components/Icon/Icon.tsx +0 -2
  444. package/src/components/Icon/index.ts +0 -0
  445. package/src/components/Inputs/Switch/Switch.stories.tsx +0 -22
  446. package/src/components/Inputs/Switch/Switch.styles.ts +0 -13
  447. package/src/components/Inputs/Switch/Switch.tsx +0 -18
  448. package/src/components/Inputs/index.ts +0 -1
  449. package/src/components/ItemComposition/Item.tsx +0 -41
  450. package/src/components/ItemComposition/ItemComposition.stories.tsx +0 -78
  451. package/src/components/ItemComposition/ItemComposition.styles.ts +0 -29
  452. package/src/components/ItemComposition/ItemComposition.tsx +0 -47
  453. package/src/components/ItemComposition/index.ts +0 -6
  454. package/src/components/Layout/AreaIndicator.styles.ts +0 -33
  455. package/src/components/Layout/AreaIndicator.tsx +0 -35
  456. package/src/components/Layout/PageLayout/PageLayout.stories.tsx +0 -81
  457. package/src/components/Layout/PageLayout/PageLayout.styles.ts +0 -41
  458. package/src/components/Layout/PageLayout/PageLayout.tsx +0 -21
  459. package/src/components/Layout/PageLayout/PageLayoutActions.tsx +0 -25
  460. package/src/components/Layout/PageLayout/PageLayoutBody.tsx +0 -25
  461. package/src/components/Layout/PageLayout/PageLayoutHeader.tsx +0 -19
  462. package/src/components/Layout/PageLayout/PageQuickAccess.tsx +0 -76
  463. package/src/components/Layout/PageLayout/index.ts +0 -12
  464. package/src/components/Layout/PageLayout.cypress.spec.tsx +0 -66
  465. package/src/components/Layout/index.ts +0 -1
  466. package/src/components/List/Item/Avatar.tsx +0 -21
  467. package/src/components/List/Item/AvatarSkeleton.tsx +0 -17
  468. package/src/components/List/Item/ListItem.stories.tsx +0 -41
  469. package/src/components/List/Item/ListItem.styles.ts +0 -57
  470. package/src/components/List/Item/ListItem.tsx +0 -32
  471. package/src/components/List/Item/Text.tsx +0 -25
  472. package/src/components/List/Item/TextSkeleton.tsx +0 -22
  473. package/src/components/List/Item/index.ts +0 -14
  474. package/src/components/List/List.stories.tsx +0 -70
  475. package/src/components/List/List.styles.ts +0 -8
  476. package/src/components/List/List.tsx +0 -19
  477. package/src/components/List/index.ts +0 -6
  478. package/src/components/Menu/Button/MenuButton.stories.tsx +0 -16
  479. package/src/components/Menu/Button/MenuButton.styles.ts +0 -27
  480. package/src/components/Menu/Button/MenuButton.tsx +0 -67
  481. package/src/components/Menu/Button/index.ts +0 -1
  482. package/src/components/Menu/Menu.stories.tsx +0 -71
  483. package/src/components/Menu/Menu.styles.ts +0 -68
  484. package/src/components/Menu/Menu.tsx +0 -25
  485. package/src/components/Menu/MenuDivider.tsx +0 -13
  486. package/src/components/Menu/MenuItem.tsx +0 -38
  487. package/src/components/Menu/MenuItems.tsx +0 -36
  488. package/src/components/Menu/index.ts +0 -12
  489. package/src/components/Menu/useMenu.tsx +0 -79
  490. package/src/components/Modal/Modal.stories.tsx +0 -142
  491. package/src/components/Modal/Modal.styles.ts +0 -91
  492. package/src/components/Modal/Modal.tsx +0 -79
  493. package/src/components/Modal/ModalActions.tsx +0 -64
  494. package/src/components/Modal/ModalBody.tsx +0 -15
  495. package/src/components/Modal/ModalHeader.tsx +0 -21
  496. package/src/components/Modal/index.ts +0 -12
  497. package/src/components/README.md +0 -3
  498. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +0 -62
  499. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.styles.tsx +0 -22
  500. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +0 -68
  501. package/src/components/Tooltip/ConfirmationTooltip/TooltipContent.tsx +0 -31
  502. package/src/components/Tooltip/ConfirmationTooltip/index.ts +0 -1
  503. package/src/components/Tooltip/ConfirmationTooltip/models.ts +0 -18
  504. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.stories.tsx +0 -70
  505. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.styles.ts +0 -5
  506. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.tsx +0 -115
  507. package/src/components/Tooltip/TextOverflowTooltip/index.tsx +0 -1
  508. package/src/components/Tooltip/Tooltip.stories.tsx +0 -41
  509. package/src/components/Tooltip/Tooltip.tsx +0 -57
  510. package/src/components/Tooltip/index.ts +0 -2
  511. package/src/components/index.ts +0 -13
  512. package/src/styles/tokens/themes/_ui-dark.tokens.json +0 -695
  513. package/src/styles/tokens/themes/_ui-light.tokens.json +0 -695
  514. package/src/utils/centreonBaseURL.ts +0 -4
  515. package/src/utils/docsURL.ts +0 -31
  516. package/src/utils/index.ts +0 -22
  517. package/src/utils/panelSize.ts +0 -15
  518. package/src/utils/sanitizedHTML.ts +0 -18
  519. package/src/utils/translatedLabel.ts +0 -2
  520. package/src/utils/useInfiniteScrollListing.ts +0 -121
  521. package/src/utils/useLicenseExpirationWarning.test.tsx +0 -148
  522. package/src/utils/useLicenseExpirationWarning.ts +0 -52
  523. package/src/utils/usePluralizedTranslation.ts +0 -21
  524. package/src/utils/useRefreshInterval.ts +0 -39
  525. package/src/utils/useResizeObserver.ts +0 -6
  526. package/src/utils/useThresholds.ts +0 -0
  527. /package/{public/brand → assets}/centreon-logo-one-line-dark.svg +0 -0
  528. /package/{public/brand → assets}/centreon-logo-one-line-light.svg +0 -0
  529. /package/{src/@assets/images → assets}/not-authorized-template-background-dark.svg +0 -0
  530. /package/{src/@assets/images → assets}/not-authorized-template-background-light.svg +0 -0
  531. /package/{public/fonts → fonts/fonts-generated}/roboto-bold-webfont.ttf +0 -0
  532. /package/{public/fonts → fonts/fonts-generated}/roboto-bold-webfont.woff +0 -0
  533. /package/{public/fonts → fonts/fonts-generated}/roboto-bold-webfont.woff2 +0 -0
  534. /package/{public/fonts → fonts/fonts-generated}/roboto-light-webfont.ttf +0 -0
  535. /package/{public/fonts → fonts/fonts-generated}/roboto-light-webfont.woff +0 -0
  536. /package/{public/fonts → fonts/fonts-generated}/roboto-light-webfont.woff2 +0 -0
  537. /package/{public/fonts → fonts/fonts-generated}/roboto-medium-webfont.ttf +0 -0
  538. /package/{public/fonts → fonts/fonts-generated}/roboto-medium-webfont.woff +0 -0
  539. /package/{public/fonts → fonts/fonts-generated}/roboto-medium-webfont.woff2 +0 -0
  540. /package/{public/fonts → fonts/fonts-generated}/roboto-regular-webfont.ttf +0 -0
  541. /package/{public/fonts → fonts/fonts-generated}/roboto-regular-webfont.woff +0 -0
  542. /package/{public/fonts → fonts/fonts-generated}/roboto-regular-webfont.woff2 +0 -0
  543. /package/src/Listing/Header/{_internals/Label.tsx → Label.tsx} +0 -0
  544. /package/src/Typography/{story.utils.tsx → index.tsx} +0 -0
@@ -1,1338 +0,0 @@
1
- {
2
- "global": {
3
- "title": "oracle-shared-spool-ratio graph on srv-oracle-users",
4
- "start": "2023-06-07T09:27:07+02:00",
5
- "end": "2023-06-08T09:27:07+02:00",
6
- "vertical-label": "Value",
7
- "base": 1000,
8
- "width": 550,
9
- "height": 140,
10
- "scaled": 0,
11
- "multiple_services": false
12
- },
13
- "metrics": [
14
- {
15
- "index_id": 4811,
16
- "metric_id": 11758,
17
- "metric": "connTime",
18
- "metric_legend": "connTime",
19
- "unit": "s",
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": "#ff99cc"
34
- },
35
- "legend": "connTime",
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
- 0.05376,
46
- 0.338,
47
- 0.63248,
48
- 0.18326666667,
49
- 0.36706666667,
50
- 0.099166666667,
51
- 0.31305,
52
- 0.37373333333,
53
- 0.43933333333,
54
- 0.464,
55
- 0.35258333333,
56
- 0.28791666667,
57
- 0.56913333333,
58
- 0.76703333333,
59
- 0.67518333333,
60
- 0.90208333333,
61
- 0.32488333333,
62
- 0.47813333333,
63
- 0.071966666667,
64
- 0.3686,
65
- 0.8341,
66
- 0.77396666667,
67
- 0.34295,
68
- 0.51203333333,
69
- 0.23581666667,
70
- 0.14966666667,
71
- 0.53633333333,
72
- 0.66725,
73
- 0.44083333333,
74
- 0.40603333333,
75
- 0.76311666667,
76
- 0.76126666667,
77
- 0.20203333333,
78
- 0.50725,
79
- 0.37375,
80
- 0.7752,
81
- 0.71796666667,
82
- 0.65141666667,
83
- 0.63618333333,
84
- 0.46131666667,
85
- 0.63278333333,
86
- 0.77115,
87
- 0.47151666667,
88
- 0.63983333333,
89
- 0.6915,
90
- 0.55061666667,
91
- 0.7759,
92
- 0.79126666667,
93
- 0.38161666667,
94
- 0.42606666667,
95
- 0.75068333333,
96
- 0.40968333333,
97
- 0.6918,
98
- 0.44128333333,
99
- 0.46593333333,
100
- 0.20545,
101
- 0.61953333333,
102
- 0.72133333333,
103
- 0.61795,
104
- 0.7154,
105
- 0.30433333333,
106
- 0.38171666667,
107
- 0.17726666667,
108
- 0.19431666667,
109
- 0.33643333333,
110
- 0.73506666667,
111
- 0.90695,
112
- 0.83988333333,
113
- 0.92438333333,
114
- 0.54573333333,
115
- 0.3909,
116
- 0.82456666667,
117
- 0.5597,
118
- 0.66463333333,
119
- 0.66005,
120
- 0.52756666667,
121
- 0.67001666667,
122
- 0.4347,
123
- 0.20076666667,
124
- 0.199,
125
- 0.45465,
126
- 0.7167,
127
- 0.4992,
128
- 0.7525,
129
- 0.68343333333,
130
- 0.18691666667,
131
- 0.10928333333,
132
- 0.49846666667,
133
- 0.20756666667,
134
- 0.57808333333,
135
- 0.5091,
136
- 0.21378333333,
137
- 0.33466666667,
138
- 0.35905,
139
- 0.7782,
140
- 0.31376666667,
141
- 0.30773333333,
142
- 0.55781666667,
143
- 0.61033333333,
144
- 0.61753333333,
145
- 0.78033333333,
146
- 0.67196666667,
147
- 0.83675,
148
- 0.5666,
149
- 0.31156666667,
150
- 0.74395,
151
- 0.58471666667,
152
- 0.73915,
153
- 0.411,
154
- 0.25175,
155
- 0.44345,
156
- 0.85811666667,
157
- 0.78576666667,
158
- 0.54195,
159
- 0.6819,
160
- 0.77463333333,
161
- 0.53966666667,
162
- 0.081583333333,
163
- 0.0105,
164
- 0.66158333333,
165
- 0.19941666667,
166
- 0.3885,
167
- 0.72716666667,
168
- 0.34625,
169
- 0.15866666667,
170
- 0.80133333333,
171
- 0.35021666667,
172
- 0.40711666667,
173
- 0.31185,
174
- 0.50205,
175
- 0.88026666667,
176
- 0.57613333333,
177
- 0.43963333333,
178
- 0.32051666667,
179
- 0.50523333333,
180
- 0.6505,
181
- 0.55111666667,
182
- 0.5942,
183
- 0.72986666667,
184
- 0.95238333333,
185
- 0.68285,
186
- 0.46565,
187
- 0.63016666667,
188
- 0.45605,
189
- 0.38395,
190
- null,
191
- null,
192
- null,
193
- null,
194
- null,
195
- null,
196
- null,
197
- null,
198
- null,
199
- null,
200
- null,
201
- null,
202
- null,
203
- null,
204
- null,
205
- null,
206
- null,
207
- null,
208
- null,
209
- null,
210
- null,
211
- null,
212
- null,
213
- null,
214
- null,
215
- null,
216
- null,
217
- null,
218
- null,
219
- null,
220
- null,
221
- null,
222
- null,
223
- null,
224
- null,
225
- null,
226
- null,
227
- null,
228
- null,
229
- null,
230
- null,
231
- null,
232
- null,
233
- null,
234
- null,
235
- null,
236
- null,
237
- null,
238
- null,
239
- null,
240
- null,
241
- null,
242
- null,
243
- null,
244
- null,
245
- null,
246
- null,
247
- null,
248
- null,
249
- null,
250
- null,
251
- null,
252
- null,
253
- null,
254
- null,
255
- null,
256
- null,
257
- null,
258
- null,
259
- null,
260
- null,
261
- null,
262
- null,
263
- null,
264
- null,
265
- null,
266
- null,
267
- null,
268
- null,
269
- null,
270
- null,
271
- null,
272
- null,
273
- null,
274
- null,
275
- null,
276
- null,
277
- null,
278
- null,
279
- null,
280
- null,
281
- null,
282
- null,
283
- null,
284
- null,
285
- null,
286
- null,
287
- null,
288
- null,
289
- null,
290
- null,
291
- null,
292
- null,
293
- null,
294
- null,
295
- null,
296
- null,
297
- null,
298
- null,
299
- null,
300
- null,
301
- null,
302
- null,
303
- null,
304
- null,
305
- null,
306
- null,
307
- null,
308
- null,
309
- null,
310
- null,
311
- null,
312
- null,
313
- null,
314
- null,
315
- null,
316
- null,
317
- null,
318
- null,
319
- null,
320
- null,
321
- null,
322
- null,
323
- null,
324
- null,
325
- null,
326
- null,
327
- null,
328
- null,
329
- null,
330
- null,
331
- null,
332
- null,
333
- null
334
- ],
335
- "prints": [
336
- [
337
- "Last:0.38"
338
- ],
339
- [
340
- "Min:0.01"
341
- ],
342
- [
343
- "Max:0.95"
344
- ],
345
- [
346
- "Average:0.51"
347
- ]
348
- ],
349
- "last_value": 0.38,
350
- "minimum_value": 0.01,
351
- "maximum_value": 0.95,
352
- "average_value": 0.51
353
- },
354
- {
355
- "index_id": 4811,
356
- "metric_id": 11757,
357
- "metric": "querytime",
358
- "metric_legend": "querytime",
359
- "unit": "s",
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": "#6666ff"
374
- },
375
- "legend": "querytime",
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
- 0.69412,
386
- 0.29608,
387
- 0.64332,
388
- 0.78435,
389
- 0.49911666667,
390
- 0.26918333333,
391
- 0.91718333333,
392
- 0.5858,
393
- 0.19691666667,
394
- 0.44683333333,
395
- 0.33975,
396
- 0.23175,
397
- 0.54105,
398
- 0.58516666667,
399
- 0.62908333333,
400
- 0.21381666667,
401
- 0.054433333333,
402
- 0.41883333333,
403
- 0.55065,
404
- 0.74241666667,
405
- 0.20685,
406
- 0.73463333333,
407
- 0.67131666667,
408
- 0.27435,
409
- 0.34288333333,
410
- 0.7709,
411
- 0.92633333333,
412
- 0.6353,
413
- 0.7674,
414
- 0.79433333333,
415
- 0.6929,
416
- 0.36873333333,
417
- 0.15238333333,
418
- 0.45986666667,
419
- 0.72241666667,
420
- 0.71251666667,
421
- 0.39875,
422
- 0.70755,
423
- 0.60123333333,
424
- 0.83198333333,
425
- 0.9789,
426
- 0.57765,
427
- 0.17835,
428
- 0.5656,
429
- 0.36398333333,
430
- 0.46198333333,
431
- 0.31618333333,
432
- 0.3781,
433
- 0.25323333333,
434
- 0.1532,
435
- 0.04195,
436
- 0.23205,
437
- 0.78596666667,
438
- 0.43723333333,
439
- 0.28218333333,
440
- 0.72755,
441
- 0.77603333333,
442
- 0.68743333333,
443
- 0.66741666667,
444
- 0.34995,
445
- 0.37335,
446
- 0.69358333333,
447
- 0.27455,
448
- 0.28013333333,
449
- 0.71015,
450
- 0.50801666667,
451
- 0.45211666667,
452
- 0.76751666667,
453
- 0.75243333333,
454
- 0.2591,
455
- 0.43015,
456
- 0.36633333333,
457
- 0.66898333333,
458
- 0.79993333333,
459
- 0.38278333333,
460
- 0.43815,
461
- 0.7089,
462
- 0.57918333333,
463
- 0.36856666667,
464
- 0.65455,
465
- 0.74285,
466
- 0.91205,
467
- 0.78031666667,
468
- 0.71691666667,
469
- 0.69246666667,
470
- 0.5553,
471
- 0.81631666667,
472
- 0.82576666667,
473
- 0.64196666667,
474
- 0.35766666667,
475
- 0.52513333333,
476
- 0.59181666667,
477
- 0.48015,
478
- 0.17466666667,
479
- 0.53273333333,
480
- 0.78308333333,
481
- 0.49533333333,
482
- 0.71715,
483
- 0.45326666667,
484
- 0.34505,
485
- 0.55813333333,
486
- 0.58506666667,
487
- 0.51556666667,
488
- 0.25808333333,
489
- 0.32178333333,
490
- 0.87881666667,
491
- 0.73263333333,
492
- 0.29503333333,
493
- 0.51955,
494
- 0.80328333333,
495
- 0.61133333333,
496
- 0.88905,
497
- 0.73008333333,
498
- 0.46576666667,
499
- 0.75335,
500
- 0.64886666667,
501
- 0.46566666667,
502
- 0.23391666667,
503
- 0.32333333333,
504
- 0.06075,
505
- 0.52183333333,
506
- 0.75116666667,
507
- 0.65341666667,
508
- 0.41658333333,
509
- 0.044,
510
- 0.5455,
511
- 0.66271666667,
512
- 0.45943333333,
513
- 0.34365,
514
- 0.62895,
515
- 0.69748333333,
516
- 0.57913333333,
517
- 0.42935,
518
- 0.3825,
519
- 0.5489,
520
- 0.61453333333,
521
- 0.52853333333,
522
- 0.58836666667,
523
- 0.70246666667,
524
- 0.68868333333,
525
- 0.69335,
526
- 0.4246,
527
- 0.40923333333,
528
- 0.8041,
529
- 0.6626,
530
- null,
531
- null,
532
- null,
533
- null,
534
- null,
535
- null,
536
- null,
537
- null,
538
- null,
539
- null,
540
- null,
541
- null,
542
- null,
543
- null,
544
- null,
545
- null,
546
- null,
547
- null,
548
- null,
549
- null,
550
- null,
551
- null,
552
- null,
553
- null,
554
- null,
555
- null,
556
- null,
557
- null,
558
- null,
559
- null,
560
- null,
561
- null,
562
- null,
563
- null,
564
- null,
565
- null,
566
- null,
567
- null,
568
- null,
569
- null,
570
- null,
571
- null,
572
- null,
573
- null,
574
- null,
575
- null,
576
- null,
577
- null,
578
- null,
579
- null,
580
- null,
581
- null,
582
- null,
583
- null,
584
- null,
585
- null,
586
- null,
587
- null,
588
- null,
589
- null,
590
- null,
591
- null,
592
- null,
593
- null,
594
- null,
595
- null,
596
- null,
597
- null,
598
- null,
599
- null,
600
- null,
601
- null,
602
- null,
603
- null,
604
- null,
605
- null,
606
- null,
607
- null,
608
- null,
609
- null,
610
- null,
611
- null,
612
- null,
613
- null,
614
- null,
615
- null,
616
- null,
617
- null,
618
- null,
619
- null,
620
- null,
621
- null,
622
- null,
623
- null,
624
- null,
625
- null,
626
- null,
627
- null,
628
- null,
629
- null,
630
- null,
631
- null,
632
- null,
633
- null,
634
- null,
635
- null,
636
- null,
637
- null,
638
- null,
639
- null,
640
- null,
641
- null,
642
- null,
643
- null,
644
- null,
645
- null,
646
- null,
647
- null,
648
- null,
649
- null,
650
- null,
651
- null,
652
- null,
653
- null,
654
- null,
655
- null,
656
- null,
657
- null,
658
- null,
659
- null,
660
- null,
661
- null,
662
- null,
663
- null,
664
- null,
665
- null,
666
- null,
667
- null,
668
- null,
669
- null,
670
- null,
671
- null,
672
- null,
673
- null
674
- ],
675
- "prints": [
676
- [
677
- "Last:0.66"
678
- ],
679
- [
680
- "Min:0.04"
681
- ],
682
- [
683
- "Max:0.98"
684
- ],
685
- [
686
- "Average:0.54"
687
- ]
688
- ],
689
- "last_value": 0.66,
690
- "minimum_value": 0.04,
691
- "maximum_value": 0.98,
692
- "average_value": 0.54
693
- },
694
- {
695
- "index_id": 4811,
696
- "metric_id": 11756,
697
- "metric": "used",
698
- "metric_legend": "used",
699
- "unit": "%",
700
- "hidden": 0,
701
- "min": null,
702
- "max": null,
703
- "virtual": 0,
704
- "ds_data": {
705
- "compo_id": 8,
706
- "host_id": null,
707
- "service_id": null,
708
- "name": "Used",
709
- "ds_order": 1,
710
- "ds_hidecurve": null,
711
- "ds_name": "used",
712
- "ds_color_line": "#2B28D7",
713
- "ds_color_line_mode": "0",
714
- "ds_color_area": "#050AF9",
715
- "ds_color_area_warn": null,
716
- "ds_color_area_crit": null,
717
- "ds_filled": "1",
718
- "ds_max": null,
719
- "ds_min": null,
720
- "ds_minmax_int": "0",
721
- "ds_average": "1",
722
- "ds_last": "1",
723
- "ds_total": "0",
724
- "ds_tickness": 1,
725
- "ds_transparency": "80",
726
- "ds_invert": null,
727
- "ds_legend": null,
728
- "ds_jumpline": "0",
729
- "ds_stack": null,
730
- "default_tpl1": null,
731
- "comment": null
732
- },
733
- "legend": "used",
734
- "stack": 0,
735
- "warn": null,
736
- "warn_low": null,
737
- "crit": null,
738
- "crit_low": null,
739
- "ds_color_area_warn": "#ff9a13",
740
- "ds_color_area_crit": "#e00b3d",
741
- "ds_order": 1,
742
- "data": [
743
- 81.5376,
744
- 82.84972,
745
- 83.50108,
746
- 84.304366667,
747
- 85.243566667,
748
- 84.993333333,
749
- 85.029616667,
750
- 85.006383333,
751
- 87.494416667,
752
- 87.404,
753
- 85.760416667,
754
- 84.159166667,
755
- 84.6812,
756
- 84.468933333,
757
- 84.2907,
758
- 85.632833333,
759
- 86.488066667,
760
- 86.844516667,
761
- 85.46465,
762
- 84.358816667,
763
- 82.004933333,
764
- 82.207066667,
765
- 81.247933333,
766
- 79.504016667,
767
- 79.532266667,
768
- 79.924433333,
769
- 79.03195,
770
- 78.851233333,
771
- 79.726933333,
772
- 78.68965,
773
- 78.418016667,
774
- 78.223866667,
775
- 76.752933333,
776
- 75.281316667,
777
- 73.84245,
778
- 74.192566667,
779
- 73.325533333,
780
- 72.3546,
781
- 71.02525,
782
- 70.578283333,
783
- 70.88545,
784
- 73.86865,
785
- 74.6044,
786
- 74.356266667,
787
- 74.481966667,
788
- 74.988183333,
789
- 74.891383333,
790
- 74.5475,
791
- 75.7053,
792
- 76.809883333,
793
- 77.069633333,
794
- 76.012033333,
795
- 75.40825,
796
- 74.519,
797
- 73.10165,
798
- 73.826416667,
799
- 73.605316667,
800
- 72.003283333,
801
- 71.210116667,
802
- 70.476483333,
803
- 73.647933333,
804
- 76.360233333,
805
- 78.137116667,
806
- 78.928,
807
- 78.254366667,
808
- 78.312233333,
809
- 78.939166667,
810
- 79.256566667,
811
- 78.5502,
812
- 77.899116667,
813
- 77.274816667,
814
- 77.20985,
815
- 77.566733333,
816
- 77.3999,
817
- 78.054983333,
818
- 77.6581,
819
- 78.215916667,
820
- 78.121733333,
821
- 78.28725,
822
- 78.265633333,
823
- 79.1123,
824
- 79.665216667,
825
- 81.06855,
826
- 81.349333333,
827
- 81.25085,
828
- 82.1874,
829
- 82.52145,
830
- 83.712433333,
831
- 85.337816667,
832
- 84.673283333,
833
- 83.360283333,
834
- 83.58445,
835
- 84.609016667,
836
- 84.876033333,
837
- 86.26595,
838
- 86.732966667,
839
- 87.697766667,
840
- 88.536166667,
841
- 87.30565,
842
- 86.810316667,
843
- 87.667166667,
844
- 88.473583333,
845
- 88.096516667,
846
- 87.201566667,
847
- 87.690583333,
848
- 88.866416667,
849
- 88.943983333,
850
- 87.828033333,
851
- 86.688216667,
852
- 85.928366667,
853
- 85.887183333,
854
- 86.7506,
855
- 86.304166667,
856
- 85.379783333,
857
- 85.705133333,
858
- 84.564433333,
859
- 82.771166667,
860
- 81.506916667,
861
- 82.213583333,
862
- 82.514333333,
863
- 83.525916667,
864
- 83.594916667,
865
- 84.6655,
866
- 85.179166667,
867
- 85.782583333,
868
- 84.465416667,
869
- 83.6318,
870
- 84.248066667,
871
- 86.10535,
872
- 87.008783333,
873
- 87.892233333,
874
- 89.5511,
875
- 91.161083333,
876
- 92.036366667,
877
- 91.702066667,
878
- 90.579833333,
879
- 90.5435,
880
- 90.649233333,
881
- 90.199233333,
882
- 90.253016667,
883
- 91.326716667,
884
- 93.229816667,
885
- 93.5479,
886
- 93.26945,
887
- 93.073233333,
888
- null,
889
- null,
890
- null,
891
- null,
892
- null,
893
- null,
894
- null,
895
- null,
896
- null,
897
- null,
898
- null,
899
- null,
900
- null,
901
- null,
902
- null,
903
- null,
904
- null,
905
- null,
906
- null,
907
- null,
908
- null,
909
- null,
910
- null,
911
- null,
912
- null,
913
- null,
914
- null,
915
- null,
916
- null,
917
- null,
918
- null,
919
- null,
920
- null,
921
- null,
922
- null,
923
- null,
924
- null,
925
- null,
926
- null,
927
- null,
928
- null,
929
- null,
930
- null,
931
- null,
932
- null,
933
- null,
934
- null,
935
- null,
936
- null,
937
- null,
938
- null,
939
- null,
940
- null,
941
- null,
942
- null,
943
- null,
944
- null,
945
- null,
946
- null,
947
- null,
948
- null,
949
- null,
950
- null,
951
- null,
952
- null,
953
- null,
954
- null,
955
- null,
956
- null,
957
- null,
958
- null,
959
- null,
960
- null,
961
- null,
962
- null,
963
- null,
964
- null,
965
- null,
966
- null,
967
- null,
968
- null,
969
- null,
970
- null,
971
- null,
972
- null,
973
- null,
974
- null,
975
- null,
976
- null,
977
- null,
978
- null,
979
- null,
980
- null,
981
- null,
982
- null,
983
- null,
984
- null,
985
- null,
986
- null,
987
- null,
988
- null,
989
- null,
990
- null,
991
- null,
992
- null,
993
- null,
994
- null,
995
- null,
996
- null,
997
- null,
998
- null,
999
- null,
1000
- null,
1001
- null,
1002
- null,
1003
- null,
1004
- null,
1005
- null,
1006
- null,
1007
- null,
1008
- null,
1009
- null,
1010
- null,
1011
- null,
1012
- null,
1013
- null,
1014
- null,
1015
- null,
1016
- null,
1017
- null,
1018
- null,
1019
- null,
1020
- null,
1021
- null,
1022
- null,
1023
- null,
1024
- null,
1025
- null,
1026
- null,
1027
- null,
1028
- null,
1029
- null,
1030
- null,
1031
- null
1032
- ],
1033
- "prints": [
1034
- [
1035
- "Last:93.07"
1036
- ],
1037
- [
1038
- "Average:82.08"
1039
- ]
1040
- ],
1041
- "last_value": 93.07,
1042
- "minimum_value": null,
1043
- "maximum_value": null,
1044
- "average_value": 82.08
1045
- }
1046
- ],
1047
- "times": [
1048
- "2023-06-07T09:30:00+02:00",
1049
- "2023-06-07T09:35:00+02:00",
1050
- "2023-06-07T09:40:00+02:00",
1051
- "2023-06-07T09:45:00+02:00",
1052
- "2023-06-07T09:50:00+02:00",
1053
- "2023-06-07T09:55:00+02:00",
1054
- "2023-06-07T10:00:00+02:00",
1055
- "2023-06-07T10:05:00+02:00",
1056
- "2023-06-07T10:10:00+02:00",
1057
- "2023-06-07T10:15:00+02:00",
1058
- "2023-06-07T10:20:00+02:00",
1059
- "2023-06-07T10:25:00+02:00",
1060
- "2023-06-07T10:30:00+02:00",
1061
- "2023-06-07T10:35:00+02:00",
1062
- "2023-06-07T10:40:00+02:00",
1063
- "2023-06-07T10:45:00+02:00",
1064
- "2023-06-07T10:50:00+02:00",
1065
- "2023-06-07T10:55:00+02:00",
1066
- "2023-06-07T11:00:00+02:00",
1067
- "2023-06-07T11:05:00+02:00",
1068
- "2023-06-07T11:10:00+02:00",
1069
- "2023-06-07T11:15:00+02:00",
1070
- "2023-06-07T11:20:00+02:00",
1071
- "2023-06-07T11:25:00+02:00",
1072
- "2023-06-07T11:30:00+02:00",
1073
- "2023-06-07T11:35:00+02:00",
1074
- "2023-06-07T11:40:00+02:00",
1075
- "2023-06-07T11:45:00+02:00",
1076
- "2023-06-07T11:50:00+02:00",
1077
- "2023-06-07T11:55:00+02:00",
1078
- "2023-06-07T12:00:00+02:00",
1079
- "2023-06-07T12:05:00+02:00",
1080
- "2023-06-07T12:10:00+02:00",
1081
- "2023-06-07T12:15:00+02:00",
1082
- "2023-06-07T12:20:00+02:00",
1083
- "2023-06-07T12:25:00+02:00",
1084
- "2023-06-07T12:30:00+02:00",
1085
- "2023-06-07T12:35:00+02:00",
1086
- "2023-06-07T12:40:00+02:00",
1087
- "2023-06-07T12:45:00+02:00",
1088
- "2023-06-07T12:50:00+02:00",
1089
- "2023-06-07T12:55:00+02:00",
1090
- "2023-06-07T13:00:00+02:00",
1091
- "2023-06-07T13:05:00+02:00",
1092
- "2023-06-07T13:10:00+02:00",
1093
- "2023-06-07T13:15:00+02:00",
1094
- "2023-06-07T13:20:00+02:00",
1095
- "2023-06-07T13:25:00+02:00",
1096
- "2023-06-07T13:30:00+02:00",
1097
- "2023-06-07T13:35:00+02:00",
1098
- "2023-06-07T13:40:00+02:00",
1099
- "2023-06-07T13:45:00+02:00",
1100
- "2023-06-07T13:50:00+02:00",
1101
- "2023-06-07T13:55:00+02:00",
1102
- "2023-06-07T14:00:00+02:00",
1103
- "2023-06-07T14:05:00+02:00",
1104
- "2023-06-07T14:10:00+02:00",
1105
- "2023-06-07T14:15:00+02:00",
1106
- "2023-06-07T14:20:00+02:00",
1107
- "2023-06-07T14:25:00+02:00",
1108
- "2023-06-07T14:30:00+02:00",
1109
- "2023-06-07T14:35:00+02:00",
1110
- "2023-06-07T14:40:00+02:00",
1111
- "2023-06-07T14:45:00+02:00",
1112
- "2023-06-07T14:50:00+02:00",
1113
- "2023-06-07T14:55:00+02:00",
1114
- "2023-06-07T15:00:00+02:00",
1115
- "2023-06-07T15:05:00+02:00",
1116
- "2023-06-07T15:10:00+02:00",
1117
- "2023-06-07T15:15:00+02:00",
1118
- "2023-06-07T15:20:00+02:00",
1119
- "2023-06-07T15:25:00+02:00",
1120
- "2023-06-07T15:30:00+02:00",
1121
- "2023-06-07T15:35:00+02:00",
1122
- "2023-06-07T15:40:00+02:00",
1123
- "2023-06-07T15:45:00+02:00",
1124
- "2023-06-07T15:50:00+02:00",
1125
- "2023-06-07T15:55:00+02:00",
1126
- "2023-06-07T16:00:00+02:00",
1127
- "2023-06-07T16:05:00+02:00",
1128
- "2023-06-07T16:10:00+02:00",
1129
- "2023-06-07T16:15:00+02:00",
1130
- "2023-06-07T16:20:00+02:00",
1131
- "2023-06-07T16:25:00+02:00",
1132
- "2023-06-07T16:30:00+02:00",
1133
- "2023-06-07T16:35:00+02:00",
1134
- "2023-06-07T16:40:00+02:00",
1135
- "2023-06-07T16:45:00+02:00",
1136
- "2023-06-07T16:50:00+02:00",
1137
- "2023-06-07T16:55:00+02:00",
1138
- "2023-06-07T17:00:00+02:00",
1139
- "2023-06-07T17:05:00+02:00",
1140
- "2023-06-07T17:10:00+02:00",
1141
- "2023-06-07T17:15:00+02:00",
1142
- "2023-06-07T17:20:00+02:00",
1143
- "2023-06-07T17:25:00+02:00",
1144
- "2023-06-07T17:30:00+02:00",
1145
- "2023-06-07T17:35:00+02:00",
1146
- "2023-06-07T17:40:00+02:00",
1147
- "2023-06-07T17:45:00+02:00",
1148
- "2023-06-07T17:50:00+02:00",
1149
- "2023-06-07T17:55:00+02:00",
1150
- "2023-06-07T18:00:00+02:00",
1151
- "2023-06-07T18:05:00+02:00",
1152
- "2023-06-07T18:10:00+02:00",
1153
- "2023-06-07T18:15:00+02:00",
1154
- "2023-06-07T18:20:00+02:00",
1155
- "2023-06-07T18:25:00+02:00",
1156
- "2023-06-07T18:30:00+02:00",
1157
- "2023-06-07T18:35:00+02:00",
1158
- "2023-06-07T18:40:00+02:00",
1159
- "2023-06-07T18:45:00+02:00",
1160
- "2023-06-07T18:50:00+02:00",
1161
- "2023-06-07T18:55:00+02:00",
1162
- "2023-06-07T19:00:00+02:00",
1163
- "2023-06-07T19:05:00+02:00",
1164
- "2023-06-07T19:10:00+02:00",
1165
- "2023-06-07T19:15:00+02:00",
1166
- "2023-06-07T19:20:00+02:00",
1167
- "2023-06-07T19:25:00+02:00",
1168
- "2023-06-07T19:30:00+02:00",
1169
- "2023-06-07T19:35:00+02:00",
1170
- "2023-06-07T19:40:00+02:00",
1171
- "2023-06-07T19:45:00+02:00",
1172
- "2023-06-07T19:50:00+02:00",
1173
- "2023-06-07T19:55:00+02:00",
1174
- "2023-06-07T20:00:00+02:00",
1175
- "2023-06-07T20:05:00+02:00",
1176
- "2023-06-07T20:10:00+02:00",
1177
- "2023-06-07T20:15:00+02:00",
1178
- "2023-06-07T20:20:00+02:00",
1179
- "2023-06-07T20:25:00+02:00",
1180
- "2023-06-07T20:30:00+02:00",
1181
- "2023-06-07T20:35:00+02:00",
1182
- "2023-06-07T20:40:00+02:00",
1183
- "2023-06-07T20:45:00+02:00",
1184
- "2023-06-07T20:50:00+02:00",
1185
- "2023-06-07T20:55:00+02:00",
1186
- "2023-06-07T21:00:00+02:00",
1187
- "2023-06-07T21:05:00+02:00",
1188
- "2023-06-07T21:10:00+02:00",
1189
- "2023-06-07T21:15:00+02:00",
1190
- "2023-06-07T21:20:00+02:00",
1191
- "2023-06-07T21:25:00+02:00",
1192
- "2023-06-07T21:30:00+02:00",
1193
- "2023-06-07T21:35:00+02:00",
1194
- "2023-06-07T21:40:00+02:00",
1195
- "2023-06-07T21:45:00+02:00",
1196
- "2023-06-07T21:50:00+02:00",
1197
- "2023-06-07T21:55:00+02:00",
1198
- "2023-06-07T22:00:00+02:00",
1199
- "2023-06-07T22:05:00+02:00",
1200
- "2023-06-07T22:10:00+02:00",
1201
- "2023-06-07T22:15:00+02:00",
1202
- "2023-06-07T22:20:00+02:00",
1203
- "2023-06-07T22:25:00+02:00",
1204
- "2023-06-07T22:30:00+02:00",
1205
- "2023-06-07T22:35:00+02:00",
1206
- "2023-06-07T22:40:00+02:00",
1207
- "2023-06-07T22:45:00+02:00",
1208
- "2023-06-07T22:50:00+02:00",
1209
- "2023-06-07T22:55:00+02:00",
1210
- "2023-06-07T23:00:00+02:00",
1211
- "2023-06-07T23:05:00+02:00",
1212
- "2023-06-07T23:10:00+02:00",
1213
- "2023-06-07T23:15:00+02:00",
1214
- "2023-06-07T23:20:00+02:00",
1215
- "2023-06-07T23:25:00+02:00",
1216
- "2023-06-07T23:30:00+02:00",
1217
- "2023-06-07T23:35:00+02:00",
1218
- "2023-06-07T23:40:00+02:00",
1219
- "2023-06-07T23:45:00+02:00",
1220
- "2023-06-07T23:50:00+02:00",
1221
- "2023-06-07T23:55:00+02:00",
1222
- "2023-06-08T00:00:00+02:00",
1223
- "2023-06-08T00:05:00+02:00",
1224
- "2023-06-08T00:10:00+02:00",
1225
- "2023-06-08T00:15:00+02:00",
1226
- "2023-06-08T00:20:00+02:00",
1227
- "2023-06-08T00:25:00+02:00",
1228
- "2023-06-08T00:30:00+02:00",
1229
- "2023-06-08T00:35:00+02:00",
1230
- "2023-06-08T00:40:00+02:00",
1231
- "2023-06-08T00:45:00+02:00",
1232
- "2023-06-08T00:50:00+02:00",
1233
- "2023-06-08T00:55:00+02:00",
1234
- "2023-06-08T01:00:00+02:00",
1235
- "2023-06-08T01:05:00+02:00",
1236
- "2023-06-08T01:10:00+02:00",
1237
- "2023-06-08T01:15:00+02:00",
1238
- "2023-06-08T01:20:00+02:00",
1239
- "2023-06-08T01:25:00+02:00",
1240
- "2023-06-08T01:30:00+02:00",
1241
- "2023-06-08T01:35:00+02:00",
1242
- "2023-06-08T01:40:00+02:00",
1243
- "2023-06-08T01:45:00+02:00",
1244
- "2023-06-08T01:50:00+02:00",
1245
- "2023-06-08T01:55:00+02:00",
1246
- "2023-06-08T02:00:00+02:00",
1247
- "2023-06-08T02:05:00+02:00",
1248
- "2023-06-08T02:10:00+02:00",
1249
- "2023-06-08T02:15:00+02:00",
1250
- "2023-06-08T02:20:00+02:00",
1251
- "2023-06-08T02:25:00+02:00",
1252
- "2023-06-08T02:30:00+02:00",
1253
- "2023-06-08T02:35:00+02:00",
1254
- "2023-06-08T02:40:00+02:00",
1255
- "2023-06-08T02:45:00+02:00",
1256
- "2023-06-08T02:50:00+02:00",
1257
- "2023-06-08T02:55:00+02:00",
1258
- "2023-06-08T03:00:00+02:00",
1259
- "2023-06-08T03:05:00+02:00",
1260
- "2023-06-08T03:10:00+02:00",
1261
- "2023-06-08T03:15:00+02:00",
1262
- "2023-06-08T03:20:00+02:00",
1263
- "2023-06-08T03:25:00+02:00",
1264
- "2023-06-08T03:30:00+02:00",
1265
- "2023-06-08T03:35:00+02:00",
1266
- "2023-06-08T03:40:00+02:00",
1267
- "2023-06-08T03:45:00+02:00",
1268
- "2023-06-08T03:50:00+02:00",
1269
- "2023-06-08T03:55:00+02:00",
1270
- "2023-06-08T04:00:00+02:00",
1271
- "2023-06-08T04:05:00+02:00",
1272
- "2023-06-08T04:10:00+02:00",
1273
- "2023-06-08T04:15:00+02:00",
1274
- "2023-06-08T04:20:00+02:00",
1275
- "2023-06-08T04:25:00+02:00",
1276
- "2023-06-08T04:30:00+02:00",
1277
- "2023-06-08T04:35:00+02:00",
1278
- "2023-06-08T04:40:00+02:00",
1279
- "2023-06-08T04:45:00+02:00",
1280
- "2023-06-08T04:50:00+02:00",
1281
- "2023-06-08T04:55:00+02:00",
1282
- "2023-06-08T05:00:00+02:00",
1283
- "2023-06-08T05:05:00+02:00",
1284
- "2023-06-08T05:10:00+02:00",
1285
- "2023-06-08T05:15:00+02:00",
1286
- "2023-06-08T05:20:00+02:00",
1287
- "2023-06-08T05:25:00+02:00",
1288
- "2023-06-08T05:30:00+02:00",
1289
- "2023-06-08T05:35:00+02:00",
1290
- "2023-06-08T05:40:00+02:00",
1291
- "2023-06-08T05:45:00+02:00",
1292
- "2023-06-08T05:50:00+02:00",
1293
- "2023-06-08T05:55:00+02:00",
1294
- "2023-06-08T06:00:00+02:00",
1295
- "2023-06-08T06:05:00+02:00",
1296
- "2023-06-08T06:10:00+02:00",
1297
- "2023-06-08T06:15:00+02:00",
1298
- "2023-06-08T06:20:00+02:00",
1299
- "2023-06-08T06:25:00+02:00",
1300
- "2023-06-08T06:30:00+02:00",
1301
- "2023-06-08T06:35:00+02:00",
1302
- "2023-06-08T06:40:00+02:00",
1303
- "2023-06-08T06:45:00+02:00",
1304
- "2023-06-08T06:50:00+02:00",
1305
- "2023-06-08T06:55:00+02:00",
1306
- "2023-06-08T07:00:00+02:00",
1307
- "2023-06-08T07:05:00+02:00",
1308
- "2023-06-08T07:10:00+02:00",
1309
- "2023-06-08T07:15:00+02:00",
1310
- "2023-06-08T07:20:00+02:00",
1311
- "2023-06-08T07:25:00+02:00",
1312
- "2023-06-08T07:30:00+02:00",
1313
- "2023-06-08T07:35:00+02:00",
1314
- "2023-06-08T07:40:00+02:00",
1315
- "2023-06-08T07:45:00+02:00",
1316
- "2023-06-08T07:50:00+02:00",
1317
- "2023-06-08T07:55:00+02:00",
1318
- "2023-06-08T08:00:00+02:00",
1319
- "2023-06-08T08:05:00+02:00",
1320
- "2023-06-08T08:10:00+02:00",
1321
- "2023-06-08T08:15:00+02:00",
1322
- "2023-06-08T08:20:00+02:00",
1323
- "2023-06-08T08:25:00+02:00",
1324
- "2023-06-08T08:30:00+02:00",
1325
- "2023-06-08T08:35:00+02:00",
1326
- "2023-06-08T08:40:00+02:00",
1327
- "2023-06-08T08:45:00+02:00",
1328
- "2023-06-08T08:50:00+02:00",
1329
- "2023-06-08T08:55:00+02:00",
1330
- "2023-06-08T09:00:00+02:00",
1331
- "2023-06-08T09:05:00+02:00",
1332
- "2023-06-08T09:10:00+02:00",
1333
- "2023-06-08T09:15:00+02:00",
1334
- "2023-06-08T09:20:00+02:00",
1335
- "2023-06-08T09:25:00+02:00",
1336
- "2023-06-08T09:30:00+02:00"
1337
- ]
1338
- }