@centreon/ui 24.4.21 → 24.4.23

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 (558) hide show
  1. package/README.md +44 -14
  2. package/package.json +101 -31
  3. package/public/README.md +39 -0
  4. package/public/mockServiceWorker.js +303 -0
  5. package/src/@assets/README.md +5 -0
  6. package/src/@assets/brand/centreon-logo-one-line-dark.svg +1 -0
  7. package/src/@assets/brand/centreon-logo-one-line-light.svg +1 -0
  8. package/src/@assets/icons/downtime.icon.svg +1 -0
  9. package/src/@types/aria-attributes.d.ts +10 -0
  10. package/src/@types/data-attributes.d.ts +3 -0
  11. package/src/@types/globals.d.ts +9 -0
  12. package/src/@types/vite-env.d.ts +2 -0
  13. package/src/ActionsList/ActionsList.styles.ts +116 -0
  14. package/src/ActionsList/index.stories.tsx +74 -0
  15. package/src/ActionsList/index.tsx +58 -21
  16. package/src/ActionsList/models.ts +8 -0
  17. package/src/Button/Icon/index.tsx +11 -2
  18. package/src/Button/Save/index.stories.tsx +10 -5
  19. package/src/Button/Save/index.tsx +1 -1
  20. package/src/Checkbox/Checkbox.tsx +109 -0
  21. package/src/Checkbox/CheckboxGroup/index.stories.tsx +41 -0
  22. package/src/Checkbox/CheckboxGroup/index.tsx +75 -0
  23. package/src/Checkbox/index.stories.tsx +39 -0
  24. package/src/Checkbox/index.tsx +2 -0
  25. package/src/Dashboard/Dashboard.styles.ts +108 -0
  26. package/src/Dashboard/DashboardLayout.stories.tsx +104 -0
  27. package/src/Dashboard/Grid.tsx +70 -0
  28. package/src/Dashboard/Item.tsx +100 -0
  29. package/src/Dashboard/Layout.tsx +79 -0
  30. package/src/Dashboard/index.tsx +9 -0
  31. package/src/Dashboard/utils.ts +28 -0
  32. package/src/Dialog/Confirm/index.tsx +17 -4
  33. package/src/Dialog/Duplicate/index.test.tsx +1 -1
  34. package/src/Dialog/index.tsx +14 -2
  35. package/src/FallbackPage/FallbackPage.tsx +2 -2
  36. package/src/FileDropZone/index.tsx +1 -1
  37. package/src/Form/CollapsibleGroup.tsx +15 -5
  38. package/src/Form/{index.stories.tsx → Form.stories.tsx} +2 -3
  39. package/src/Form/Form.styles.ts +11 -0
  40. package/src/Form/{index.tsx → Form.tsx} +38 -16
  41. package/src/Form/FormButtons.tsx +2 -4
  42. package/src/Form/Inputs/Autocomplete.tsx +1 -1
  43. package/src/Form/Inputs/Checkbox.tsx +57 -0
  44. package/src/Form/Inputs/CheckboxGroup.tsx +76 -0
  45. package/src/Form/Inputs/ConnectedAutocomplete.tsx +3 -1
  46. package/src/Form/Inputs/Grid.tsx +4 -2
  47. package/src/Form/Inputs/Radio.tsx +16 -5
  48. package/src/Form/Inputs/Switch.tsx +1 -1
  49. package/src/Form/Inputs/Text.tsx +18 -7
  50. package/src/Form/Inputs/index.tsx +31 -15
  51. package/src/Form/Inputs/models.ts +20 -4
  52. package/src/Form/index.ts +1 -0
  53. package/src/Form/storiesData.tsx +50 -3
  54. package/src/Graph/Gauge/AnimatedPie.tsx +102 -0
  55. package/src/Graph/Gauge/Gauge.stories.tsx +159 -0
  56. package/src/Graph/Gauge/Gauge.tsx +41 -0
  57. package/src/Graph/Gauge/PieData.tsx +63 -0
  58. package/src/Graph/Gauge/ResponsiveGauge.tsx +148 -0
  59. package/src/Graph/Gauge/Thresholds.tsx +117 -0
  60. package/src/Graph/Gauge/index.ts +1 -0
  61. package/src/Graph/Gauge/models.ts +20 -0
  62. package/src/Graph/HeatMap/HeatMap.stories.tsx +105 -0
  63. package/src/Graph/HeatMap/HeatMap.styles.tsx +29 -0
  64. package/src/Graph/HeatMap/HeatMap.tsx +12 -0
  65. package/src/Graph/HeatMap/HeatMapData.json +137 -0
  66. package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +98 -0
  67. package/src/Graph/HeatMap/index.ts +1 -0
  68. package/src/Graph/HeatMap/model.ts +33 -0
  69. package/src/Graph/LineChart/BasicComponents/Axes/UnitLabel.tsx +20 -0
  70. package/src/Graph/LineChart/BasicComponents/Axes/index.tsx +88 -0
  71. package/src/Graph/LineChart/BasicComponents/Axes/models.ts +26 -0
  72. package/src/Graph/LineChart/BasicComponents/Axes/useAxisY.ts +100 -0
  73. package/src/Graph/LineChart/BasicComponents/Grids/index.tsx +20 -0
  74. package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/index.tsx +99 -0
  75. package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/useRegularLines.ts +15 -0
  76. package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/index.tsx +81 -0
  77. package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/useStackedLines.ts +39 -0
  78. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/BasicThreshold.tsx +53 -0
  79. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/Circle.tsx +43 -0
  80. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithPatternLines.tsx +78 -0
  81. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithVariation.tsx +63 -0
  82. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/helpers/index.ts +69 -0
  83. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/index.tsx +142 -0
  84. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/models.ts +105 -0
  85. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useCoordinateCircle.ts +46 -0
  86. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useScaleThreshold.ts +171 -0
  87. package/src/Graph/LineChart/BasicComponents/Lines/index.tsx +189 -0
  88. package/src/Graph/LineChart/BasicComponents/Lines/models.ts +45 -0
  89. package/src/Graph/LineChart/BasicComponents/LoadingProgress.tsx +46 -0
  90. package/src/Graph/LineChart/BasicComponents/ThresholdLine.tsx +64 -0
  91. package/src/Graph/LineChart/BasicComponents/Thresholds.tsx +77 -0
  92. package/src/Graph/LineChart/BasicComponents/useFilterLines.ts +60 -0
  93. package/src/Graph/LineChart/Header/index.tsx +65 -0
  94. package/src/Graph/LineChart/Icons/Downtime.tsx +9 -0
  95. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/GuidingLines.tsx +45 -0
  96. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/RegularAnchorPoint.tsx +66 -0
  97. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/StackedAnchorPoint.tsx +76 -0
  98. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/TooltipAnchorPoint.tsx +96 -0
  99. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/index.tsx +20 -0
  100. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/models.ts +62 -0
  101. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTickGraph.ts +94 -0
  102. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTooltipAnchorPoint.ts +107 -0
  103. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Area.tsx +114 -0
  104. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Line.tsx +103 -0
  105. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/index.tsx +81 -0
  106. package/src/Graph/LineChart/InteractiveComponents/Annotations/Area/Downtime.tsx +27 -0
  107. package/src/Graph/LineChart/InteractiveComponents/Annotations/EventAnnotations.tsx +61 -0
  108. package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Acknowledgement.tsx +27 -0
  109. package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Comments.tsx +25 -0
  110. package/src/Graph/LineChart/InteractiveComponents/Annotations/annotationsAtoms.ts +183 -0
  111. package/src/Graph/LineChart/InteractiveComponents/Annotations/index.tsx +49 -0
  112. package/src/Graph/LineChart/InteractiveComponents/Annotations/models.ts +25 -0
  113. package/src/Graph/LineChart/InteractiveComponents/Annotations/useAnnotation.ts +56 -0
  114. package/src/Graph/LineChart/InteractiveComponents/Bar.tsx +21 -0
  115. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftIcon.tsx +62 -0
  116. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftZone.tsx +74 -0
  117. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/index.tsx +85 -0
  118. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/models.ts +12 -0
  119. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/useTimeShiftZones.ts +72 -0
  120. package/src/Graph/LineChart/InteractiveComponents/Tooltip/index.tsx +59 -0
  121. package/src/Graph/LineChart/InteractiveComponents/Tooltip/models.ts +9 -0
  122. package/src/Graph/LineChart/InteractiveComponents/Tooltip/useGraphTooltip.ts +67 -0
  123. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/index.tsx +38 -0
  124. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/models.ts +9 -0
  125. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/useZoomPreview.ts +107 -0
  126. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/zoomPreviewAtoms.ts +3 -0
  127. package/src/Graph/LineChart/InteractiveComponents/index.tsx +168 -0
  128. package/src/Graph/LineChart/InteractiveComponents/interactionWithGraphAtoms.ts +52 -0
  129. package/src/Graph/LineChart/Legend/InteractiveValue.tsx +22 -0
  130. package/src/Graph/LineChart/Legend/Legend.styles.ts +117 -0
  131. package/src/Graph/LineChart/Legend/LegendContent.tsx +33 -0
  132. package/src/Graph/LineChart/Legend/LegendHeader.tsx +93 -0
  133. package/src/Graph/LineChart/Legend/index.tsx +201 -0
  134. package/src/Graph/LineChart/Legend/models.ts +16 -0
  135. package/src/Graph/LineChart/Legend/useInteractiveValues.ts +99 -0
  136. package/src/Graph/LineChart/Legend/useLegend.ts +104 -0
  137. package/src/Graph/LineChart/LineChart.styles.ts +45 -0
  138. package/src/Graph/LineChart/LineChart.tsx +317 -0
  139. package/src/Graph/LineChart/LoadingSkeleton.tsx +44 -0
  140. package/src/Graph/LineChart/common/index.ts +35 -0
  141. package/src/Graph/LineChart/graphAtoms.ts +3 -0
  142. package/src/Graph/LineChart/helpers/doc.ts +560 -0
  143. package/src/Graph/LineChart/helpers/index.ts +63 -0
  144. package/src/Graph/LineChart/index.stories.tsx +478 -0
  145. package/src/Graph/LineChart/index.tsx +115 -0
  146. package/src/Graph/LineChart/mockedData/annotationData.json +326 -0
  147. package/src/Graph/LineChart/mockedData/exclusionPeriodFirstPeriod.json +588 -0
  148. package/src/Graph/LineChart/mockedData/exclusionPeriodSecondPeriod.json +588 -0
  149. package/src/Graph/LineChart/mockedData/exclusionPeriodThirdPeriod.json +581 -0
  150. package/src/Graph/LineChart/mockedData/lastDay.json +1326 -0
  151. package/src/Graph/LineChart/mockedData/lastDayAreaStack.json +3106 -0
  152. package/src/Graph/LineChart/mockedData/lastDayForward.json +1338 -0
  153. package/src/Graph/LineChart/mockedData/lastDayThreshold.json +2352 -0
  154. package/src/Graph/LineChart/mockedData/lastMonth.json +1674 -0
  155. package/src/Graph/LineChart/mockedData/lastWeek.json +2202 -0
  156. package/src/Graph/LineChart/mockedData/zoomPreview.json +742 -0
  157. package/src/Graph/LineChart/models.ts +146 -0
  158. package/src/Graph/LineChart/translatedLabels.ts +9 -0
  159. package/src/Graph/LineChart/useLineChartData.ts +49 -0
  160. package/src/Graph/LineChart/useLineChartIntersection.ts +36 -0
  161. package/src/Graph/SingleBar/ResponsiveSingleBar.tsx +197 -0
  162. package/src/Graph/SingleBar/SingleBar.stories.tsx +204 -0
  163. package/src/Graph/SingleBar/SingleBar.tsx +25 -0
  164. package/src/Graph/SingleBar/ThresholdLine.tsx +103 -0
  165. package/src/Graph/SingleBar/Thresholds.tsx +50 -0
  166. package/src/Graph/SingleBar/index.ts +1 -0
  167. package/src/Graph/SingleBar/models.ts +10 -0
  168. package/src/Graph/Text/Text.stories.tsx +67 -0
  169. package/src/Graph/Text/Text.styles.ts +17 -0
  170. package/src/Graph/Text/Text.tsx +91 -0
  171. package/src/Graph/Text/index.ts +1 -0
  172. package/src/Graph/common/margins.ts +1 -0
  173. package/src/Graph/common/models.ts +19 -0
  174. package/src/Graph/common/timeSeries/index.test.ts +624 -0
  175. package/src/Graph/common/timeSeries/index.ts +626 -0
  176. package/src/Graph/common/timeSeries/models.ts +129 -0
  177. package/src/Graph/common/utils.ts +75 -0
  178. package/src/Graph/index.ts +5 -0
  179. package/src/Home.stories.mdx +1 -84
  180. package/src/Image/Image.tsx +11 -1
  181. package/src/Image/index.stories.tsx +2 -2
  182. package/src/Image/index.test.tsx +3 -3
  183. package/src/InputField/Search/PersistentTooltip.tsx +10 -6
  184. package/src/InputField/Select/Autocomplete/Connected/Multi/MultiConnectedAutocompleteField.cypress.spec.tsx +127 -0
  185. package/src/InputField/Select/Autocomplete/Connected/Multi/index.test.tsx +4 -22
  186. package/src/InputField/Select/Autocomplete/Connected/Multi/utils/index.ts +22 -0
  187. package/src/InputField/Select/Autocomplete/Connected/index.stories.tsx +0 -3
  188. package/src/InputField/Select/Autocomplete/Connected/index.test.tsx +4 -7
  189. package/src/InputField/Select/Autocomplete/Connected/index.tsx +47 -9
  190. package/src/InputField/Select/Autocomplete/Draggable/index.stories.tsx +0 -2
  191. package/src/InputField/Select/Autocomplete/Multi/index.tsx +32 -15
  192. package/src/InputField/Select/Autocomplete/index.stories.tsx +1 -10
  193. package/src/InputField/Select/Autocomplete/index.tsx +5 -2
  194. package/src/InputField/Select/index.tsx +2 -1
  195. package/src/InputField/Text/index.tsx +19 -9
  196. package/src/Listing/ActionBar/index.tsx +15 -8
  197. package/src/Listing/Cell/DataCell.styles.ts +24 -0
  198. package/src/Listing/Cell/DataCell.tsx +43 -68
  199. package/src/Listing/Cell/index.tsx +88 -8
  200. package/src/Listing/EmptyResult/EmptyResult.tsx +13 -0
  201. package/src/Listing/Header/Cell/ListingHeaderCell.styles.ts +71 -0
  202. package/src/Listing/Header/{SortableCell/Content.tsx → Cell/ListingHeaderCell.tsx} +18 -83
  203. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.styles.ts +26 -0
  204. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.tsx +70 -0
  205. package/src/Listing/Header/ListingHeader.styles.ts +16 -0
  206. package/src/Listing/Header/{index.tsx → ListingHeader.tsx} +28 -105
  207. package/src/Listing/Header/_internals/DraggableIconButton.tsx +35 -0
  208. package/src/Listing/Header/{PredefinedSelectionList.tsx → _internals/PredefinedSelectionList.tsx} +1 -1
  209. package/src/Listing/Header/index.ts +1 -0
  210. package/src/Listing/Listing.cypress.spec.tsx +122 -0
  211. package/src/Listing/Listing.styles.ts +81 -0
  212. package/src/Listing/ListingDocs.mdx +61 -0
  213. package/src/Listing/Row/EmptyRow.styles.ts +14 -0
  214. package/src/Listing/Row/EmptyRow.tsx +30 -0
  215. package/src/Listing/{Row.tsx → Row/Row.tsx} +12 -11
  216. package/src/Listing/Row/SkeletonLoaderRows.tsx +23 -0
  217. package/src/Listing/index.stories.tsx +144 -40
  218. package/src/Listing/index.test.tsx +1 -1
  219. package/src/Listing/index.tsx +217 -262
  220. package/src/Listing/models.ts +1 -0
  221. package/src/Listing/tableAtoms.ts +15 -10
  222. package/src/Listing/useStyleTable.ts +9 -9
  223. package/src/ListingPage/index.stories.tsx +21 -8
  224. package/src/ListingPage/index.tsx +20 -38
  225. package/src/Logo/CentreonLogo.tsx +2 -2
  226. package/src/Module/LicensedModule/LicenseCheck/index.stories.tsx +0 -2
  227. package/src/Module/LicensedModule/LicenseCheck/index.tsx +24 -9
  228. package/src/Module/LicensedModule/index.tsx +7 -1
  229. package/src/Panel/Memoized.tsx +1 -1
  230. package/src/Panel/Section/index.test.tsx +1 -1
  231. package/src/Panel/Section/index.tsx +1 -1
  232. package/src/Panel/index.tsx +10 -6
  233. package/src/ParentSize/ParentSize.tsx +24 -0
  234. package/src/ParentSize/index.ts +1 -0
  235. package/src/PopoverMenu/index.tsx +18 -4
  236. package/src/RichTextEditor/ContentEditable.tsx +70 -24
  237. package/src/RichTextEditor/RichTextEditor.cypress.spec.tsx +408 -0
  238. package/src/RichTextEditor/RichTextEditor.tsx +161 -47
  239. package/src/RichTextEditor/index.stories.tsx +14 -0
  240. package/src/RichTextEditor/plugins/AutoLinkPlugin/index.tsx +53 -5
  241. package/src/RichTextEditor/plugins/FloatingLinkEditorPlugin.tsx +54 -16
  242. package/src/RichTextEditor/plugins/ToolbarPlugin/AlignPicker.tsx +116 -0
  243. package/src/RichTextEditor/plugins/ToolbarPlugin/BlockButtons.tsx +155 -0
  244. package/src/RichTextEditor/plugins/ToolbarPlugin/FormatButtons.tsx +31 -92
  245. package/src/RichTextEditor/plugins/ToolbarPlugin/LinkButton.tsx +106 -0
  246. package/src/RichTextEditor/plugins/ToolbarPlugin/ListButton.tsx +155 -0
  247. package/src/RichTextEditor/plugins/ToolbarPlugin/MacrosButton.tsx +75 -0
  248. package/src/RichTextEditor/plugins/ToolbarPlugin/ToolbarPlugin.styles.ts +32 -0
  249. package/src/RichTextEditor/plugins/ToolbarPlugin/UndoRedoButtons.tsx +13 -3
  250. package/src/RichTextEditor/plugins/ToolbarPlugin/index.tsx +35 -10
  251. package/src/RichTextEditor/translatedLabels.ts +3 -0
  252. package/src/Snackbar/index.tsx +14 -4
  253. package/src/Snackbar/useSnackbar.tsx +5 -1
  254. package/src/SortableItems/SortableItem.tsx +3 -2
  255. package/src/ThemeProvider/index.tsx +41 -33
  256. package/src/ThemeProvider/palettes.ts +422 -201
  257. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.styles.ts +51 -0
  258. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.tsx +95 -0
  259. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/ErrorText.tsx +14 -0
  260. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/PickersStartEndDate.tsx +166 -0
  261. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/index.tsx +76 -0
  262. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/models.ts +61 -0
  263. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/usePickersStartEndDate.ts +82 -0
  264. package/src/TimePeriods/CustomTimePeriod/SimpleCustomTimePeriod.tsx +28 -0
  265. package/src/TimePeriods/CustomTimePeriod/index.tsx +66 -0
  266. package/src/TimePeriods/DateTimePickerInput.tsx +49 -0
  267. package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +65 -0
  268. package/src/TimePeriods/SelectedTimePeriod.tsx +102 -0
  269. package/src/TimePeriods/TimePeriods.cypress.spec.tsx +510 -0
  270. package/src/TimePeriods/TimePeriods.styles.ts +22 -0
  271. package/src/TimePeriods/helpers/index.ts +26 -0
  272. package/src/TimePeriods/index.stories.tsx +113 -0
  273. package/src/TimePeriods/index.tsx +79 -0
  274. package/src/TimePeriods/mockedData.ts +12 -0
  275. package/src/TimePeriods/models.ts +97 -0
  276. package/src/TimePeriods/timePeriodsAtoms.ts +102 -0
  277. package/src/TimePeriods/translatedLabels.ts +9 -0
  278. package/src/TimePeriods/useSortTimePeriods.ts +31 -0
  279. package/src/TimePeriods/useTimePeriod.ts +49 -0
  280. package/src/Typography/EllipsisTypography.tsx +18 -0
  281. package/src/Typography/FluidTypography/index.stories.tsx +63 -0
  282. package/src/Typography/FluidTypography/index.tsx +51 -0
  283. package/src/Typography/FluidTypography/useFluidResizeObserver.ts +56 -0
  284. package/src/Typography/Subtitle.tsx +55 -0
  285. package/src/Typography/{index.stories.tsx → Typography.stories.tsx} +5 -5
  286. package/src/WallpaperPage/index.stories.tsx +1 -1
  287. package/src/Wizard/ActionsBar.test.tsx +1 -1
  288. package/src/Wizard/WizardContent.tsx +2 -3
  289. package/src/Wizard/index.stories.tsx +5 -18
  290. package/src/Wizard/index.test.tsx +1 -1
  291. package/src/Wizard/index.tsx +20 -5
  292. package/src/Wizard/models.ts +7 -0
  293. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-normal-1-snap.png +0 -0
  294. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-item-header-1-snap.png +0 -0
  295. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-many-panels-1-snap.png +0 -0
  296. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-basic-1-snap.png +0 -0
  297. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-20-px-height-1-snap.png +0 -0
  298. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-200-px-width-1-snap.png +0 -0
  299. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-heading-5-variant-1-snap.png +0 -0
  300. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-long-text-1-snap.png +0 -0
  301. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-as-empty-state-1-snap.png +0 -0
  302. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-loading-with-no-data-1-snap.png +0 -0
  303. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-with-editable-and-sortable-columns-1-snap.png +0 -0
  304. package/src/api/TestQueryProvider.tsx +2 -1
  305. package/src/api/buildListingEndpoint/getSearchQueryParameterValue.ts +35 -26
  306. package/src/api/buildListingEndpoint/index.test.ts +2 -2
  307. package/src/api/buildListingEndpoint/index.ts +1 -1
  308. package/src/api/buildListingEndpoint/models.ts +2 -2
  309. package/src/api/customFetch.ts +22 -3
  310. package/src/api/useFetchQuery/index.ts +34 -19
  311. package/src/api/useGraphQuery/index.ts +166 -0
  312. package/src/api/useGraphQuery/models.ts +15 -0
  313. package/src/api/useMutationQuery/index.ts +51 -20
  314. package/src/api/useRequest/index.ts +9 -6
  315. package/src/base/tokens/README.md +3 -0
  316. package/src/base/tokens/source/$metadata.json +5 -0
  317. package/src/base/tokens/source/base.json +142 -0
  318. package/src/base/tokens/themes/base.tokens.d.ts +38 -0
  319. package/src/base/tokens/themes/base.tokens.json +695 -0
  320. package/src/base/tokens/themes/base.tokens.ts +38 -0
  321. package/src/base/tokens/themes/ui-dark.tokens.d.ts +38 -0
  322. package/src/base/tokens/themes/ui-dark.tokens.json +695 -0
  323. package/src/base/tokens/themes/ui-dark.tokens.ts +38 -0
  324. package/src/base/tokens/themes/ui-light.tokens.d.ts +38 -0
  325. package/src/base/tokens/themes/ui-light.tokens.json +695 -0
  326. package/src/base/tokens/themes/ui-light.tokens.ts +38 -0
  327. package/src/components/Avatar/Avatar.stories.tsx +23 -0
  328. package/src/components/Avatar/Avatar.styles.ts +11 -0
  329. package/src/components/Avatar/Avatar.tsx +32 -0
  330. package/src/components/Avatar/index.ts +1 -0
  331. package/src/components/Button/Button.stories.tsx +34 -0
  332. package/src/components/Button/Button.styles.ts +44 -0
  333. package/src/components/Button/Button.tsx +78 -0
  334. package/src/components/Button/Icon/IconButton.stories.tsx +18 -0
  335. package/src/components/Button/Icon/IconButton.styles.ts +14 -0
  336. package/src/components/Button/Icon/IconButton.tsx +58 -0
  337. package/src/components/Button/Icon/index.tsx +1 -0
  338. package/src/components/Button/index.ts +2 -0
  339. package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +25 -0
  340. package/src/components/CollapsibleItem/CollapsibleItem.tsx +47 -0
  341. package/src/components/CollapsibleItem/index.ts +1 -0
  342. package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +15 -0
  343. package/src/components/DataTable/DataTable.stories.tsx +51 -0
  344. package/src/components/DataTable/DataTable.styles.ts +27 -0
  345. package/src/components/DataTable/DataTable.tsx +35 -0
  346. package/src/components/DataTable/EmptyState/DataTableEmptyState.stories.tsx +21 -0
  347. package/src/components/DataTable/EmptyState/DataTableEmptyState.styles.ts +26 -0
  348. package/src/components/DataTable/EmptyState/DataTableEmptyState.tsx +53 -0
  349. package/src/components/DataTable/Item/DataTableItem.stories.tsx +25 -0
  350. package/src/components/DataTable/Item/DataTableItem.styles.ts +33 -0
  351. package/src/components/DataTable/Item/DataTableItem.tsx +123 -0
  352. package/src/components/DataTable/Item/DataTableItemSkeleton.tsx +13 -0
  353. package/src/components/DataTable/index.ts +10 -0
  354. package/src/components/Form/AccessRights/AccessRights.resource.ts +45 -0
  355. package/src/components/Form/AccessRights/AccessRightsForm.stories.tsx +59 -0
  356. package/src/components/Form/AccessRights/AccessRightsForm.styles.ts +21 -0
  357. package/src/components/Form/AccessRights/AccessRightsForm.tsx +67 -0
  358. package/src/components/Form/AccessRights/AccessRightsFormActions.tsx +80 -0
  359. package/src/components/Form/AccessRights/Input/AddAction.tsx +31 -0
  360. package/src/components/Form/AccessRights/Input/ContactAccessRightInput.stories.tsx +54 -0
  361. package/src/components/Form/AccessRights/Input/ContactAccessRightInput.tsx +72 -0
  362. package/src/components/Form/AccessRights/Input/ContactAccessRightsInput.styles.ts +22 -0
  363. package/src/components/Form/AccessRights/Input/ContactInputField.tsx +105 -0
  364. package/src/components/Form/AccessRights/Input/RoleInputField.tsx +29 -0
  365. package/src/components/Form/AccessRights/List/ContactAccessRightsList.stories.tsx +97 -0
  366. package/src/components/Form/AccessRights/List/ContactAccessRightsList.styles.ts +71 -0
  367. package/src/components/Form/AccessRights/List/ContactAccessRightsList.tsx +51 -0
  368. package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.stories.tsx +116 -0
  369. package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.tsx +118 -0
  370. package/src/components/Form/AccessRights/List/ContactAccessRightsListItemSkeleton.tsx +26 -0
  371. package/src/components/Form/AccessRights/List/ContactAccessRightsListSkeleton.tsx +28 -0
  372. package/src/components/Form/AccessRights/Stats/AccessRightsStats.styles.ts +18 -0
  373. package/src/components/Form/AccessRights/Stats/AccessRightsStats.tsx +41 -0
  374. package/src/components/Form/AccessRights/__fixtures__/contactAccessRight.mock.ts +52 -0
  375. package/src/components/Form/AccessRights/common/GroupLabel.styles.ts +18 -0
  376. package/src/components/Form/AccessRights/common/GroupLabel.tsx +15 -0
  377. package/src/components/Form/AccessRights/common/Input.styles.ts +48 -0
  378. package/src/components/Form/AccessRights/common/RoleInputSelect.styles.ts +11 -0
  379. package/src/components/Form/AccessRights/common/RoleInputSelect.tsx +57 -0
  380. package/src/components/Form/AccessRights/index.ts +3 -0
  381. package/src/components/Form/AccessRights/useAccessRightsForm.test.tsx +531 -0
  382. package/src/components/Form/AccessRights/useAccessRightsForm.tsx +282 -0
  383. package/src/components/Form/AccessRights/useAccessRightsForm.utils.ts +41 -0
  384. package/src/components/Form/AccessRightsV2/AccessRights.cypress.spec.tsx +350 -0
  385. package/src/components/Form/AccessRightsV2/AccessRights.stories.tsx +119 -0
  386. package/src/components/Form/AccessRightsV2/AccessRights.styles.ts +10 -0
  387. package/src/components/Form/AccessRightsV2/AccessRights.tsx +60 -0
  388. package/src/components/Form/AccessRightsV2/Actions/Actions.styles.ts +14 -0
  389. package/src/components/Form/AccessRightsV2/Actions/Actions.tsx +81 -0
  390. package/src/components/Form/AccessRightsV2/Actions/useActions.ts +79 -0
  391. package/src/components/Form/AccessRightsV2/List/Item.tsx +90 -0
  392. package/src/components/Form/AccessRightsV2/List/List.styles.tsx +45 -0
  393. package/src/components/Form/AccessRightsV2/List/List.tsx +52 -0
  394. package/src/components/Form/AccessRightsV2/List/ListItemSkeleton.tsx +18 -0
  395. package/src/components/Form/AccessRightsV2/List/ListSkeleton.tsx +22 -0
  396. package/src/components/Form/AccessRightsV2/List/RemoveAccessRight.tsx +38 -0
  397. package/src/components/Form/AccessRightsV2/List/StateChip.tsx +28 -0
  398. package/src/components/Form/AccessRightsV2/List/useItem.ts +64 -0
  399. package/src/components/Form/AccessRightsV2/Provider.tsx +15 -0
  400. package/src/components/Form/AccessRightsV2/ShareInput/ContactSwitch.tsx +42 -0
  401. package/src/components/Form/AccessRightsV2/ShareInput/ShareInput.styles.ts +9 -0
  402. package/src/components/Form/AccessRightsV2/ShareInput/ShareInput.tsx +77 -0
  403. package/src/components/Form/AccessRightsV2/ShareInput/useShareInput.tsx +109 -0
  404. package/src/components/Form/AccessRightsV2/Stats/Stats.tsx +36 -0
  405. package/src/components/Form/AccessRightsV2/atoms.ts +97 -0
  406. package/src/components/Form/AccessRightsV2/common/RoleSelectField.styles.tsx +7 -0
  407. package/src/components/Form/AccessRightsV2/common/RoleSelectField.tsx +45 -0
  408. package/src/components/Form/AccessRightsV2/models.ts +54 -0
  409. package/src/components/Form/AccessRightsV2/storiesData.ts +221 -0
  410. package/src/components/Form/AccessRightsV2/useAccessRightsInitValues.ts +51 -0
  411. package/src/components/Form/Dashboard/Dashboard.resource.ts +9 -0
  412. package/src/components/Form/Dashboard/DashboardForm.stories.ts +39 -0
  413. package/src/components/Form/Dashboard/DashboardForm.styles.ts +21 -0
  414. package/src/components/Form/Dashboard/DashboardForm.tsx +134 -0
  415. package/src/components/Form/Dashboard/GlobalRefreshFieldOption.tsx +59 -0
  416. package/src/components/Form/Dashboard/index.ts +2 -0
  417. package/src/components/Form/Dashboard/translatedLabels.ts +9 -0
  418. package/src/components/Form/Form.models.ts +1 -0
  419. package/src/components/Form/Form.resource.ts +1 -0
  420. package/src/components/Form/Form.styles.ts +17 -0
  421. package/src/components/Form/FormActions.tsx +57 -0
  422. package/src/components/Form/index.ts +4 -0
  423. package/src/components/Header/PageHeader/PageHeader.stories.tsx +97 -0
  424. package/src/components/Header/PageHeader/PageHeader.styles.ts +126 -0
  425. package/src/components/Header/PageHeader/PageHeader.tsx +15 -0
  426. package/src/components/Header/PageHeader/PageHeaderActions.tsx +17 -0
  427. package/src/components/Header/PageHeader/PageHeaderMain.tsx +15 -0
  428. package/src/components/Header/PageHeader/PageHeaderMenu.tsx +15 -0
  429. package/src/components/Header/PageHeader/PageHeaderMessage.tsx +32 -0
  430. package/src/components/Header/PageHeader/PageHeaderTitle.tsx +47 -0
  431. package/src/components/Header/PageHeader/index.ts +14 -0
  432. package/src/components/Header/index.ts +1 -0
  433. package/src/components/Icon/Icon.styles.ts +0 -0
  434. package/src/components/Icon/Icon.tsx +2 -0
  435. package/src/components/Icon/index.ts +0 -0
  436. package/src/components/Inputs/Switch/Switch.stories.tsx +22 -0
  437. package/src/components/Inputs/Switch/Switch.styles.ts +13 -0
  438. package/src/components/Inputs/Switch/Switch.tsx +18 -0
  439. package/src/components/Inputs/index.ts +1 -0
  440. package/src/components/ItemComposition/Item.tsx +41 -0
  441. package/src/components/ItemComposition/ItemComposition.stories.tsx +78 -0
  442. package/src/components/ItemComposition/ItemComposition.styles.ts +29 -0
  443. package/src/components/ItemComposition/ItemComposition.tsx +47 -0
  444. package/src/components/ItemComposition/index.ts +6 -0
  445. package/src/components/Layout/AreaIndicator.styles.ts +33 -0
  446. package/src/components/Layout/AreaIndicator.tsx +35 -0
  447. package/src/components/Layout/PageLayout/PageLayout.stories.tsx +81 -0
  448. package/src/components/Layout/PageLayout/PageLayout.styles.ts +41 -0
  449. package/src/components/Layout/PageLayout/PageLayout.tsx +21 -0
  450. package/src/components/Layout/PageLayout/PageLayoutActions.tsx +24 -0
  451. package/src/components/Layout/PageLayout/PageLayoutBody.tsx +24 -0
  452. package/src/components/Layout/PageLayout/PageLayoutHeader.tsx +15 -0
  453. package/src/components/Layout/PageLayout/index.ts +10 -0
  454. package/src/components/Layout/index.ts +1 -0
  455. package/src/components/List/Item/Avatar.tsx +21 -0
  456. package/src/components/List/Item/AvatarSkeleton.tsx +17 -0
  457. package/src/components/List/Item/ListItem.stories.tsx +41 -0
  458. package/src/components/List/Item/ListItem.styles.ts +63 -0
  459. package/src/components/List/Item/ListItem.tsx +34 -0
  460. package/src/components/List/Item/Text.tsx +27 -0
  461. package/src/components/List/Item/TextSkeleton.tsx +22 -0
  462. package/src/components/List/Item/index.ts +14 -0
  463. package/src/components/List/List.stories.tsx +70 -0
  464. package/src/components/List/List.styles.ts +8 -0
  465. package/src/components/List/List.tsx +19 -0
  466. package/src/components/List/index.ts +6 -0
  467. package/src/components/Menu/Button/MenuButton.stories.tsx +16 -0
  468. package/src/components/Menu/Button/MenuButton.styles.ts +27 -0
  469. package/src/components/Menu/Button/MenuButton.tsx +67 -0
  470. package/src/components/Menu/Button/index.ts +1 -0
  471. package/src/components/Menu/Menu.stories.tsx +71 -0
  472. package/src/components/Menu/Menu.styles.ts +68 -0
  473. package/src/components/Menu/Menu.tsx +25 -0
  474. package/src/components/Menu/MenuDivider.tsx +13 -0
  475. package/src/components/Menu/MenuItem.tsx +38 -0
  476. package/src/components/Menu/MenuItems.tsx +36 -0
  477. package/src/components/Menu/index.ts +12 -0
  478. package/src/components/Menu/useMenu.tsx +79 -0
  479. package/src/components/Modal/Modal.stories.tsx +142 -0
  480. package/src/components/Modal/Modal.styles.ts +90 -0
  481. package/src/components/Modal/Modal.tsx +79 -0
  482. package/src/components/Modal/ModalActions.tsx +62 -0
  483. package/src/components/Modal/ModalBody.tsx +15 -0
  484. package/src/components/Modal/ModalHeader.tsx +21 -0
  485. package/src/components/Modal/index.ts +12 -0
  486. package/src/components/README.md +3 -0
  487. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +62 -0
  488. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.styles.tsx +22 -0
  489. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +68 -0
  490. package/src/components/Tooltip/ConfirmationTooltip/TooltipContent.tsx +31 -0
  491. package/src/components/Tooltip/ConfirmationTooltip/index.ts +1 -0
  492. package/src/components/Tooltip/ConfirmationTooltip/models.ts +18 -0
  493. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.stories.tsx +70 -0
  494. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.styles.ts +5 -0
  495. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.tsx +115 -0
  496. package/src/components/Tooltip/TextOverflowTooltip/index.tsx +1 -0
  497. package/src/components/Tooltip/Tooltip.stories.tsx +41 -0
  498. package/src/components/Tooltip/Tooltip.tsx +57 -0
  499. package/src/components/Tooltip/index.ts +2 -0
  500. package/src/components/index.ts +13 -0
  501. package/src/index.ts +31 -21
  502. package/src/screens/dashboard/DashboardsDetail.stories.tsx +108 -0
  503. package/src/screens/dashboard/DashboardsOverview.stories.tsx +281 -0
  504. package/src/styles/tokens/themes/_ui-dark.tokens.json +695 -0
  505. package/src/styles/tokens/themes/_ui-light.tokens.json +695 -0
  506. package/src/utils/centreonBaseURL.ts +4 -0
  507. package/src/utils/docsURL.ts +31 -0
  508. package/src/utils/getNormalizedId.ts +1 -3
  509. package/src/utils/index.ts +22 -0
  510. package/src/utils/panelSize.ts +15 -0
  511. package/src/utils/sanitizedHTML.ts +18 -0
  512. package/src/utils/translatedLabel.ts +2 -0
  513. package/src/utils/useCopyToClipboard.ts +2 -3
  514. package/src/utils/useDateTimePickerAdapter.ts +309 -0
  515. package/src/utils/useDebounce.ts +8 -5
  516. package/src/utils/useDeepCallback.ts +1 -3
  517. package/src/utils/useDeepMemo.ts +1 -3
  518. package/src/utils/useInfiniteScrollListing.ts +121 -0
  519. package/src/utils/useIntersectionObserver.ts +5 -5
  520. package/src/utils/useKeyObserver.tsx +1 -3
  521. package/src/utils/useLicenseExpirationWarning.cypress.spec.tsx +137 -0
  522. package/src/utils/useLicenseExpirationWarning.ts +52 -0
  523. package/src/utils/useLocaleDateTimeFormat/index.test.tsx +1 -1
  524. package/src/utils/useLocaleDateTimeFormat/index.ts +4 -2
  525. package/src/utils/useLocaleDateTimeFormat/localeFallback.test.tsx +1 -1
  526. package/src/utils/useMemoComponent.ts +1 -1
  527. package/src/utils/useRefreshInterval.ts +39 -0
  528. package/src/utils/useResizeObserver.ts +6 -0
  529. package/src/utils/useThresholds.ts +0 -0
  530. package/{setupTests.js → test/setupTests.js} +1 -1
  531. package/{src → test}/testRenderer.tsx +1 -1
  532. package/.storybook/main.js +0 -82
  533. package/.storybook/preview.tsx +0 -21
  534. package/jest.config.js +0 -20
  535. package/src/Listing/Header/SortableCell/DraggableIcon.tsx +0 -41
  536. package/src/Listing/Skeleton.tsx +0 -11
  537. package/src/storyshots.test.js +0 -52
  538. package/testRunner.js +0 -36
  539. package/tsconfig.json +0 -29
  540. package/types/declarations.d.ts +0 -9
  541. /package/{assets → public/brand}/centreon-logo-one-line-dark.svg +0 -0
  542. /package/{assets → public/brand}/centreon-logo-one-line-light.svg +0 -0
  543. /package/{fonts/fonts-generated → public/fonts}/roboto-bold-webfont.ttf +0 -0
  544. /package/{fonts/fonts-generated → public/fonts}/roboto-bold-webfont.woff +0 -0
  545. /package/{fonts/fonts-generated → public/fonts}/roboto-bold-webfont.woff2 +0 -0
  546. /package/{fonts/fonts-generated → public/fonts}/roboto-light-webfont.ttf +0 -0
  547. /package/{fonts/fonts-generated → public/fonts}/roboto-light-webfont.woff +0 -0
  548. /package/{fonts/fonts-generated → public/fonts}/roboto-light-webfont.woff2 +0 -0
  549. /package/{fonts/fonts-generated → public/fonts}/roboto-medium-webfont.ttf +0 -0
  550. /package/{fonts/fonts-generated → public/fonts}/roboto-medium-webfont.woff +0 -0
  551. /package/{fonts/fonts-generated → public/fonts}/roboto-medium-webfont.woff2 +0 -0
  552. /package/{fonts/fonts-generated → public/fonts}/roboto-regular-webfont.ttf +0 -0
  553. /package/{fonts/fonts-generated → public/fonts}/roboto-regular-webfont.woff +0 -0
  554. /package/{fonts/fonts-generated → public/fonts}/roboto-regular-webfont.woff2 +0 -0
  555. /package/{assets → src/@assets/images}/not-authorized-template-background-dark.svg +0 -0
  556. /package/{assets → src/@assets/images}/not-authorized-template-background-light.svg +0 -0
  557. /package/src/Listing/Header/{Label.tsx → _internals/Label.tsx} +0 -0
  558. /package/src/Typography/{index.tsx → story.utils.tsx} +0 -0
@@ -0,0 +1,1338 @@
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
+ }