@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,2202 @@
1
+ {
2
+ "global": {
3
+ "title": "oracle-shared-spool-ratio graph on srv-oracle-users",
4
+ "start": "2023-05-31T21:38:30+02:00",
5
+ "end": "2023-06-07T21:38:30+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
+ null,
46
+ 0.717525,
47
+ 0.3018625,
48
+ 0.6411125,
49
+ 0.6719375,
50
+ 0.5789875,
51
+ 0.375325,
52
+ 0.434875,
53
+ 0.7254375,
54
+ 0.41635,
55
+ 0.5296625,
56
+ 0.5241625,
57
+ 0.5008125,
58
+ 0.328025,
59
+ 0.24695,
60
+ 0.5298875,
61
+ 0.5998875,
62
+ 0.5346,
63
+ 0.508,
64
+ 0.5056375,
65
+ 0.4966125,
66
+ 0.5914375,
67
+ 0.701275,
68
+ 0.3506625,
69
+ 0.63425,
70
+ 0.5625,
71
+ 0.504375,
72
+ 0.6008125,
73
+ 0.3560625,
74
+ 0.3476125,
75
+ 0.6056125,
76
+ 0.4730875,
77
+ 0.4119875,
78
+ 0.3657125,
79
+ 0.3893625,
80
+ 0.546625,
81
+ 0.4844125,
82
+ 0.490725,
83
+ 0.61925,
84
+ 0.38985,
85
+ 0.6627375,
86
+ 0.63485,
87
+ 0.6175375,
88
+ 0.6968625,
89
+ 0.5562375,
90
+ 0.5588125,
91
+ 0.538375,
92
+ 0.4368875,
93
+ 0.3541,
94
+ 0.5216625,
95
+ 0.6249375,
96
+ 0.503875,
97
+ 0.6219,
98
+ 0.522975,
99
+ 0.5200125,
100
+ 0.2984625,
101
+ 0.5670125,
102
+ 0.5595875,
103
+ 0.552775,
104
+ 0.2506625,
105
+ 0.6193875,
106
+ 0.6573125,
107
+ 0.409525,
108
+ 0.59644833333,
109
+ 0.36721,
110
+ 0.62277333333,
111
+ 0.47325666667,
112
+ 0.61849,
113
+ 0.4591,
114
+ 0.33787,
115
+ 0.38395,
116
+ 0.34516666667,
117
+ 0.59038333333,
118
+ 0.51955333333,
119
+ 0.47505333333,
120
+ 0.43277666667,
121
+ 0.59717,
122
+ 0.70510333333,
123
+ 0.66649,
124
+ 0.46514,
125
+ 0.46619333333,
126
+ 0.40967,
127
+ 0.42753666667,
128
+ 0.56417333333,
129
+ 0.44391333333,
130
+ 0.22163333333,
131
+ 0.41199,
132
+ 0.31270666667,
133
+ 0.12166333333,
134
+ 0.45610333333,
135
+ 0.58512333333,
136
+ 0.29505333333,
137
+ 0.44652333333,
138
+ 0.38225416667,
139
+ 0.55458916667,
140
+ 0.55572166667,
141
+ 0.70581083333,
142
+ 0.38728666667,
143
+ 0.33232083333,
144
+ 0.44731583333,
145
+ 0.46990666667,
146
+ 0.5206225,
147
+ 0.35315583333,
148
+ 0.23610666667,
149
+ 0.5165575,
150
+ 0.67101083333,
151
+ 0.54885083333,
152
+ 0.64442083333,
153
+ 0.5659775,
154
+ 0.51162166667,
155
+ 0.6147,
156
+ 0.29876833333,
157
+ 0.2973525,
158
+ 0.60096416667,
159
+ 0.4574825,
160
+ 0.23486,
161
+ 0.38384916667,
162
+ 0.65109333333,
163
+ 0.51326333333,
164
+ 0.52025916667,
165
+ 0.65400666667,
166
+ 0.61474333333,
167
+ 0.550155,
168
+ 0.495895,
169
+ 0.5000875,
170
+ 0.29316166667,
171
+ 0.42695416667,
172
+ 0.54268916667,
173
+ 0.40367333333,
174
+ 0.70920166667,
175
+ 0.47661666667,
176
+ 0.78255833333,
177
+ 0.63996833333,
178
+ 0.23638833333,
179
+ 0.62122166667,
180
+ 0.30513333333,
181
+ 0.48345333333,
182
+ 0.54869083333,
183
+ 0.58614,
184
+ 0.39769583333,
185
+ 0.53929416667,
186
+ 0.69158416667,
187
+ 0.37134333333,
188
+ 0.4304575,
189
+ 0.35328833333,
190
+ 0.54430333333,
191
+ 0.33399583333,
192
+ 0.3304475,
193
+ 0.49739083333,
194
+ 0.52327,
195
+ 0.44271583333,
196
+ 0.62411083333,
197
+ 0.33883916667,
198
+ 0.57436083333,
199
+ 0.372225,
200
+ 0.47777083333,
201
+ 0.50257083333,
202
+ 0.39460083333,
203
+ 0.3795,
204
+ 0.45644333333,
205
+ 0.48521833333,
206
+ 0.25798083333,
207
+ 0.43766083333,
208
+ 0.5164875,
209
+ 0.390385,
210
+ 0.43386166667,
211
+ 0.71189833333,
212
+ 0.65404416667,
213
+ 0.336205,
214
+ 0.24493833333,
215
+ 0.57420333333,
216
+ 0.62064333333,
217
+ 0.54600666667,
218
+ 0.63159083333,
219
+ 0.50600083333,
220
+ 0.628085,
221
+ 0.42937,
222
+ 0.355585,
223
+ 0.637485,
224
+ 0.45999166667,
225
+ 0.38066166667,
226
+ 0.38246416667,
227
+ 0.45208416667,
228
+ 0.52603666667,
229
+ 0.58880416667,
230
+ 0.5446225,
231
+ 0.4066625,
232
+ 0.75533666667,
233
+ 0.499815,
234
+ 0.52572166667,
235
+ 0.32579166667,
236
+ 0.50101583333,
237
+ 0.17458583333,
238
+ 0.56188333333,
239
+ 0.62301666667,
240
+ 0.56505,
241
+ 0.5881,
242
+ 0.5673,
243
+ 0.36425,
244
+ 0.42038333333,
245
+ 0.37036666667,
246
+ 0.58353333333,
247
+ 0.50581666667,
248
+ 0.5374,
249
+ 0.22163333333,
250
+ 0.53886666667,
251
+ 0.41891666667,
252
+ 0.67956666667,
253
+ 0.5002,
254
+ 0.31088333333,
255
+ 0.62308333333,
256
+ 0.53451666667,
257
+ 0.4744,
258
+ 0.3157,
259
+ 0.77371666667,
260
+ 0.35426666667,
261
+ 0.51916666667,
262
+ 0.60275,
263
+ 0.58133333333,
264
+ 0.46916666667,
265
+ 0.40691666667,
266
+ 0.80266666667,
267
+ 0.59691666667,
268
+ 0.46365,
269
+ 0.84005,
270
+ 0.51505,
271
+ 0.61381666667,
272
+ 0.48591666667,
273
+ 0.28575,
274
+ 0.37908333333,
275
+ 0.5565,
276
+ 0.6975,
277
+ 0.47025,
278
+ 0.466,
279
+ 0.35141666667,
280
+ 0.52208333333,
281
+ 0.37233333333,
282
+ 0.34675,
283
+ 0.42075,
284
+ 0.64435,
285
+ 0.24191666667,
286
+ 0.61901666667,
287
+ 0.55591666667,
288
+ 0.51921666667,
289
+ 0.5654,
290
+ 0.38245,
291
+ 0.46736666667,
292
+ 0.65755,
293
+ 0.50645,
294
+ 0.55333333333,
295
+ 0.37858333333,
296
+ 0.50808333333,
297
+ 0.58433333333,
298
+ 0.35175,
299
+ 0.42908333333,
300
+ 0.36233333333,
301
+ 0.56158333333,
302
+ 0.31195,
303
+ 0.68023333333,
304
+ 0.59651666667,
305
+ 0.64825,
306
+ 0.71858333333,
307
+ 0.54138333333,
308
+ 0.73991666667,
309
+ 0.55478333333,
310
+ 0.4892,
311
+ 0.56783333333,
312
+ 0.63965,
313
+ 0.47205,
314
+ 0.27215,
315
+ 0.25745,
316
+ 0.70008333333,
317
+ 0.59661666667,
318
+ 0.5026,
319
+ 0.49326666667,
320
+ 0.3655,
321
+ 0.60356333333,
322
+ 0.2132275,
323
+ 0.8226925,
324
+ 0.36787,
325
+ 0.4914825,
326
+ 0.3909675,
327
+ 0.5646075,
328
+ 0.3643125,
329
+ 0.457405,
330
+ 0.471935,
331
+ 0.4731125,
332
+ 0.7753075,
333
+ 0.49163,
334
+ 0.244405,
335
+ 0.557185,
336
+ 0.4107075,
337
+ 0.54546666667,
338
+ 0.64036666667,
339
+ 0.29668,
340
+ 0.3992,
341
+ 0.63089666667,
342
+ 0.75758666667,
343
+ 0.56485,
344
+ 0.413955,
345
+ 0.5602,
346
+ 0.431975,
347
+ 0.43485666667,
348
+ 0.30827166667,
349
+ 0.39586333333,
350
+ 0.37732833333,
351
+ 0.51866333333,
352
+ 0.52611333333,
353
+ 0.31280166667,
354
+ 0.50100333333,
355
+ 0.549735,
356
+ 0.42203833333,
357
+ 0.45060333333,
358
+ 0.42550666667,
359
+ 0.54967666667,
360
+ 0.37341666667,
361
+ 0.38782333333,
362
+ 0.51425166667,
363
+ 0.51834,
364
+ 0.45271833333,
365
+ 0.711285,
366
+ 0.577775,
367
+ 0.47911833333,
368
+ 0.44316666667,
369
+ 0.34324666667,
370
+ 0.33805833333,
371
+ 0.27513166667,
372
+ 0.53801166667,
373
+ 0.77332333333,
374
+ 0.47316,
375
+ 0.574345,
376
+ 0.60672666667,
377
+ 0.62811833333,
378
+ 0.50659,
379
+ 0.42655083333,
380
+ 0.2728925,
381
+ 0.67187,
382
+ 0.3979,
383
+ 0.50411166667,
384
+ 0.65740666667,
385
+ 0.63976833333,
386
+ 0.6468725,
387
+ 0.47726833333,
388
+ 0.4558775,
389
+ 0.30631666667,
390
+ 0.5109975,
391
+ 0.5717275,
392
+ 0.66228083333,
393
+ 0.69612166667,
394
+ 0.426675,
395
+ 0.35191333333,
396
+ 0.38965666667,
397
+ 0.2744825,
398
+ 0.5117825,
399
+ 0.55155416667,
400
+ 0.41036583333,
401
+ 0.46853916667,
402
+ 0.62363833333,
403
+ 0.3687475,
404
+ 0.44296916667,
405
+ 0.24307666667,
406
+ 0.765635,
407
+ 0.63333083333,
408
+ 0.4951,
409
+ 0.3801225,
410
+ 0.4771775,
411
+ 0.39723416667,
412
+ 0.4643,
413
+ 0.4289525,
414
+ 0.44795416667,
415
+ 0.76632583333,
416
+ 0.59939916667,
417
+ 0.2934925,
418
+ 0.19469416667,
419
+ 0.19469333333,
420
+ 0.492425,
421
+ 0.63350833333,
422
+ 0.33733833333,
423
+ 0.52109916667,
424
+ 0.7505775,
425
+ 0.40881,
426
+ 0.69642,
427
+ 0.76366,
428
+ 0.58523,
429
+ 0.44103,
430
+ 0.6813,
431
+ 0.65428,
432
+ 0.50898,
433
+ 0.58906,
434
+ 0.26844,
435
+ 0.38626,
436
+ 0.44927,
437
+ 0.40626,
438
+ 0.43084,
439
+ 0.54353,
440
+ 0.15838,
441
+ 0.66925,
442
+ 0.37817,
443
+ 0.4707,
444
+ 0.51832,
445
+ 0.5091,
446
+ 0.8043,
447
+ 0.40112,
448
+ 0.4939,
449
+ 0.54619,
450
+ 0.55022,
451
+ 0.59386,
452
+ 0.32591,
453
+ 0.2247,
454
+ 0.52951,
455
+ 0.51087,
456
+ 0.45835,
457
+ 0.33692,
458
+ 0.67881,
459
+ 0.62172,
460
+ 0.52216,
461
+ 0.45299,
462
+ 0.56436,
463
+ 0.49893,
464
+ 0.55314,
465
+ 0.49332,
466
+ 0.46613,
467
+ 0.23186,
468
+ 0.5636,
469
+ 0.11787,
470
+ 0.55091,
471
+ 0.44308,
472
+ 0.39479,
473
+ 0.25959,
474
+ 0.46345,
475
+ 0.41195,
476
+ 0.64631,
477
+ 0.78474,
478
+ 0.5461,
479
+ 0.60538,
480
+ 0.36694,
481
+ 0.61858,
482
+ 0.62356,
483
+ 0.72798,
484
+ 0.65403,
485
+ 0.44993,
486
+ 0.41512,
487
+ 0.408,
488
+ 0.57437,
489
+ 0.52494,
490
+ 0.56954,
491
+ 0.61914,
492
+ 0.41972,
493
+ 0.56292,
494
+ 0.66072,
495
+ 0.60597,
496
+ 0.3471,
497
+ 0.50783,
498
+ 0.55257,
499
+ 0.61786,
500
+ 0.43487,
501
+ 0.50873,
502
+ 0.4697,
503
+ 0.67452,
504
+ 0.63891,
505
+ 0.42052,
506
+ 0.50675,
507
+ 0.65396,
508
+ 0.44012,
509
+ 0.49093,
510
+ 0.62349,
511
+ 0.24831,
512
+ 0.40325,
513
+ 0.3517,
514
+ 0.2406375,
515
+ 0.4074125,
516
+ 0.57481666667,
517
+ 0.44426666667,
518
+ 0.57990416667,
519
+ 0.3584625,
520
+ 0.56930833333,
521
+ 0.461075,
522
+ 0.69519166667,
523
+ 0.58419166667,
524
+ 0.6644625,
525
+ 0.58740833333,
526
+ 0.502175,
527
+ 0.54106666667,
528
+ 0.39467916667,
529
+ 0.54319166667,
530
+ 0.675225,
531
+ 0.6772375,
532
+ 0.4582625,
533
+ 0.4673875,
534
+ 0.43303333333,
535
+ 0.44830416667,
536
+ 0.421425,
537
+ 0.4474125,
538
+ 0.72664583333,
539
+ 0.55170833333,
540
+ 0.4613375,
541
+ 0.71693333333,
542
+ 0.35159583333,
543
+ 0.49416666667,
544
+ 0.41411666667,
545
+ 0.52532083333,
546
+ 0.46037916667,
547
+ 0.63142083333,
548
+ 0.6827625,
549
+ 0.40663333333
550
+ ],
551
+ "prints": [
552
+ [
553
+ "Last:0.41"
554
+ ],
555
+ [
556
+ "Min:0.12"
557
+ ],
558
+ [
559
+ "Max:0.84"
560
+ ],
561
+ [
562
+ "Average:0.50"
563
+ ]
564
+ ],
565
+ "last_value": 0.41,
566
+ "minimum_value": 0.12,
567
+ "maximum_value": 0.84,
568
+ "average_value": 0.5
569
+ },
570
+ {
571
+ "index_id": 4811,
572
+ "metric_id": 11757,
573
+ "metric": "querytime",
574
+ "metric_legend": "querytime",
575
+ "unit": "s",
576
+ "hidden": 0,
577
+ "min": null,
578
+ "max": null,
579
+ "virtual": 0,
580
+ "ds_data": {
581
+ "ds_min": "1",
582
+ "ds_max": "1",
583
+ "ds_minmax_int": "0",
584
+ "ds_last": "1",
585
+ "ds_average": "1",
586
+ "ds_total": "0",
587
+ "ds_tickness": 1,
588
+ "ds_color_line_mode": "1",
589
+ "ds_color_line": "#6666ff"
590
+ },
591
+ "legend": "querytime",
592
+ "stack": 0,
593
+ "warn": null,
594
+ "warn_low": null,
595
+ "crit": null,
596
+ "crit_low": null,
597
+ "ds_color_area_warn": "#ff9a13",
598
+ "ds_color_area_crit": "#e00b3d",
599
+ "ds_order": 0,
600
+ "data": [
601
+ null,
602
+ 0.3822375,
603
+ 0.338175,
604
+ 0.729925,
605
+ 0.6532,
606
+ 0.6622875,
607
+ 0.45505,
608
+ 0.60315,
609
+ 0.401275,
610
+ 0.54565,
611
+ 0.4648375,
612
+ 0.56345,
613
+ 0.2957375,
614
+ 0.4214125,
615
+ 0.5022875,
616
+ 0.52665,
617
+ 0.3344125,
618
+ 0.634875,
619
+ 0.33875,
620
+ 0.5235,
621
+ 0.43645,
622
+ 0.45645,
623
+ 0.61025,
624
+ 0.653525,
625
+ 0.44325,
626
+ 0.398125,
627
+ 0.350875,
628
+ 0.3941875,
629
+ 0.4985875,
630
+ 0.2608125,
631
+ 0.269875,
632
+ 0.4928875,
633
+ 0.292925,
634
+ 0.43555,
635
+ 0.6956375,
636
+ 0.615925,
637
+ 0.3165375,
638
+ 0.6310875,
639
+ 0.5219875,
640
+ 0.5560875,
641
+ 0.5781875,
642
+ 0.427875,
643
+ 0.272275,
644
+ 0.7289,
645
+ 0.5525875,
646
+ 0.626725,
647
+ 0.6548,
648
+ 0.56645,
649
+ 0.3159625,
650
+ 0.5493,
651
+ 0.5752875,
652
+ 0.46215,
653
+ 0.3014875,
654
+ 0.3867625,
655
+ 0.539775,
656
+ 0.6039375,
657
+ 0.4355875,
658
+ 0.411425,
659
+ 0.4830375,
660
+ 0.3762125,
661
+ 0.71735,
662
+ 0.269,
663
+ 0.567975,
664
+ 0.49262833333,
665
+ 0.40225333333,
666
+ 0.62421,
667
+ 0.34907333333,
668
+ 0.66614,
669
+ 0.64291666667,
670
+ 0.47280333333,
671
+ 0.5396,
672
+ 0.39403,
673
+ 0.44625666667,
674
+ 0.72860333333,
675
+ 0.22214666667,
676
+ 0.76609,
677
+ 0.47886666667,
678
+ 0.50008,
679
+ 0.70910666667,
680
+ 0.52188,
681
+ 0.44055,
682
+ 0.36468666667,
683
+ 0.36503333333,
684
+ 0.41122,
685
+ 0.5653,
686
+ 0.22648,
687
+ 0.47388333333,
688
+ 0.40938666667,
689
+ 0.54979333333,
690
+ 0.4558,
691
+ 0.27218,
692
+ 0.84006333333,
693
+ 0.25509833333,
694
+ 0.34533916667,
695
+ 0.37986833333,
696
+ 0.41476833333,
697
+ 0.36977166667,
698
+ 0.24393166667,
699
+ 0.5005625,
700
+ 0.374215,
701
+ 0.85380833333,
702
+ 0.4801225,
703
+ 0.31904166667,
704
+ 0.4585075,
705
+ 0.752745,
706
+ 0.21556833333,
707
+ 0.4998575,
708
+ 0.60881666667,
709
+ 0.40523416667,
710
+ 0.48311333333,
711
+ 0.6045525,
712
+ 0.20181833333,
713
+ 0.59113666667,
714
+ 0.61002333333,
715
+ 0.480365,
716
+ 0.37949833333,
717
+ 0.24222583333,
718
+ 0.7307925,
719
+ 0.38327416667,
720
+ 0.40005166667,
721
+ 0.50885,
722
+ 0.44563666667,
723
+ 0.55531166667,
724
+ 0.49530833333,
725
+ 0.36818666667,
726
+ 0.5764775,
727
+ 0.64380083333,
728
+ 0.42206,
729
+ 0.29359166667,
730
+ 0.49560666667,
731
+ 0.443325,
732
+ 0.25875833333,
733
+ 0.30041833333,
734
+ 0.3564575,
735
+ 0.58502416667,
736
+ 0.74223416667,
737
+ 0.50057833333,
738
+ 0.4538275,
739
+ 0.34179333333,
740
+ 0.29270583333,
741
+ 0.60702083333,
742
+ 0.4216275,
743
+ 0.25602583333,
744
+ 0.56200416667,
745
+ 0.41060916667,
746
+ 0.3873225,
747
+ 0.7328475,
748
+ 0.44749666667,
749
+ 0.48708083333,
750
+ 0.31724666667,
751
+ 0.542455,
752
+ 0.32911083333,
753
+ 0.24504166667,
754
+ 0.4943,
755
+ 0.69643166667,
756
+ 0.45696916667,
757
+ 0.57769166667,
758
+ 0.53687416667,
759
+ 0.34264083333,
760
+ 0.46102416667,
761
+ 0.47288583333,
762
+ 0.581615,
763
+ 0.65317833333,
764
+ 0.46009833333,
765
+ 0.52495416667,
766
+ 0.41317166667,
767
+ 0.55043333333,
768
+ 0.57696583333,
769
+ 0.48937083333,
770
+ 0.18298166667,
771
+ 0.656815,
772
+ 0.54156916667,
773
+ 0.62982333333,
774
+ 0.55033916667,
775
+ 0.60631083333,
776
+ 0.76121,
777
+ 0.18459,
778
+ 0.76492,
779
+ 0.66709,
780
+ 0.50244,
781
+ 0.39493,
782
+ 0.65535666667,
783
+ 0.35731916667,
784
+ 0.64019916667,
785
+ 0.456475,
786
+ 0.55792416667,
787
+ 0.66605916667,
788
+ 0.21065083333,
789
+ 0.4248575,
790
+ 0.850955,
791
+ 0.53539416667,
792
+ 0.40172916667,
793
+ 0.606185,
794
+ 0.58081666667,
795
+ 0.54806666667,
796
+ 0.33323333333,
797
+ 0.51793333333,
798
+ 0.55431666667,
799
+ 0.59668333333,
800
+ 0.49018333333,
801
+ 0.59998333333,
802
+ 0.44546666667,
803
+ 0.33053333333,
804
+ 0.26628333333,
805
+ 0.28708333333,
806
+ 0.39905,
807
+ 0.6059,
808
+ 0.66223333333,
809
+ 0.61336666667,
810
+ 0.64191666667,
811
+ 0.64243333333,
812
+ 0.2932,
813
+ 0.46686666667,
814
+ 0.6745,
815
+ 0.43336666667,
816
+ 0.44585,
817
+ 0.55441666667,
818
+ 0.39591666667,
819
+ 0.59966666667,
820
+ 0.53675,
821
+ 0.15408333333,
822
+ 0.418,
823
+ 0.6015,
824
+ 0.5368,
825
+ 0.60053333333,
826
+ 0.59256666667,
827
+ 0.49055,
828
+ 0.51608333333,
829
+ 0.56116666667,
830
+ 0.48791666667,
831
+ 0.27166666667,
832
+ 0.44933333333,
833
+ 0.30175,
834
+ 0.532,
835
+ 0.29925,
836
+ 0.68191666667,
837
+ 0.69808333333,
838
+ 0.39383333333,
839
+ 0.64958333333,
840
+ 0.59386666667,
841
+ 0.60863333333,
842
+ 0.4553,
843
+ 0.44306666667,
844
+ 0.35461666667,
845
+ 0.23823333333,
846
+ 0.39873333333,
847
+ 0.31028333333,
848
+ 0.28183333333,
849
+ 0.51358333333,
850
+ 0.53908333333,
851
+ 0.38191666667,
852
+ 0.6085,
853
+ 0.557,
854
+ 0.55133333333,
855
+ 0.46758333333,
856
+ 0.43775,
857
+ 0.45041666667,
858
+ 0.52871666667,
859
+ 0.62766666667,
860
+ 0.16445,
861
+ 0.56378333333,
862
+ 0.6319,
863
+ 0.71301666667,
864
+ 0.19243333333,
865
+ 0.36086666667,
866
+ 0.52955,
867
+ 0.56008333333,
868
+ 0.46958333333,
869
+ 0.61478333333,
870
+ 0.5179,
871
+ 0.37285,
872
+ 0.54513333333,
873
+ 0.89198333333,
874
+ 0.34831666667,
875
+ 0.79711666667,
876
+ 0.46571666667,
877
+ 0.45108583333,
878
+ 0.65635,
879
+ 0.710995,
880
+ 0.62707,
881
+ 0.3558975,
882
+ 0.49199,
883
+ 0.3899075,
884
+ 0.34151,
885
+ 0.380945,
886
+ 0.455615,
887
+ 0.5316275,
888
+ 0.4313475,
889
+ 0.560775,
890
+ 0.4743425,
891
+ 0.5747375,
892
+ 0.4835775,
893
+ 0.65969916667,
894
+ 0.42680333333,
895
+ 0.600725,
896
+ 0.32630666667,
897
+ 0.64745666667,
898
+ 0.31762833333,
899
+ 0.42268333333,
900
+ 0.35116833333,
901
+ 0.47142,
902
+ 0.26832333333,
903
+ 0.34496666667,
904
+ 0.688725,
905
+ 0.49774833333,
906
+ 0.34480666667,
907
+ 0.54177,
908
+ 0.55014166667,
909
+ 0.37234166667,
910
+ 0.60997,
911
+ 0.59000833333,
912
+ 0.565245,
913
+ 0.37924666667,
914
+ 0.389445,
915
+ 0.35244833333,
916
+ 0.827515,
917
+ 0.41951166667,
918
+ 0.65853166667,
919
+ 0.42363333333,
920
+ 0.68144666667,
921
+ 0.44951,
922
+ 0.26957,
923
+ 0.33074833333,
924
+ 0.72332666667,
925
+ 0.50786833333,
926
+ 0.42016166667,
927
+ 0.59982,
928
+ 0.66384833333,
929
+ 0.3585,
930
+ 0.622105,
931
+ 0.5329,
932
+ 0.44583666667,
933
+ 0.39592083333,
934
+ 0.675235,
935
+ 0.71880166667,
936
+ 0.43023166667,
937
+ 0.35486,
938
+ 0.53464583333,
939
+ 0.33980833333,
940
+ 0.5025275,
941
+ 0.73073,
942
+ 0.37100083333,
943
+ 0.458425,
944
+ 0.16272833333,
945
+ 0.66322666667,
946
+ 0.46470333333,
947
+ 0.5706925,
948
+ 0.51309583333,
949
+ 0.4167775,
950
+ 0.51913833333,
951
+ 0.36356833333,
952
+ 0.67057583333,
953
+ 0.46865333333,
954
+ 0.56207416667,
955
+ 0.64422833333,
956
+ 0.55513166667,
957
+ 0.69586833333,
958
+ 0.64558416667,
959
+ 0.39396166667,
960
+ 0.70361083333,
961
+ 0.38941333333,
962
+ 0.46966833333,
963
+ 0.479135,
964
+ 0.51729916667,
965
+ 0.34119666667,
966
+ 0.52859583333,
967
+ 0.4759925,
968
+ 0.28715,
969
+ 0.47405416667,
970
+ 0.27516,
971
+ 0.23419833333,
972
+ 0.31827916667,
973
+ 0.46054416667,
974
+ 0.64301333333,
975
+ 0.52912333333,
976
+ 0.45455166667,
977
+ 0.73102333333,
978
+ 0.40912583333,
979
+ 0.3304225,
980
+ 0.4438325,
981
+ 0.34953,
982
+ 0.53485,
983
+ 0.81125,
984
+ 0.25488,
985
+ 0.55834,
986
+ 0.35964,
987
+ 0.26034,
988
+ 0.37592,
989
+ 0.39875,
990
+ 0.66929,
991
+ 0.66451,
992
+ 0.5947,
993
+ 0.27555,
994
+ 0.68353,
995
+ 0.49617,
996
+ 0.653,
997
+ 0.48443,
998
+ 0.39418,
999
+ 0.36428,
1000
+ 0.53593,
1001
+ 0.3297,
1002
+ 0.43443,
1003
+ 0.46853,
1004
+ 0.64149,
1005
+ 0.38523,
1006
+ 0.39072,
1007
+ 0.44623,
1008
+ 0.36313,
1009
+ 0.50542,
1010
+ 0.43385,
1011
+ 0.55568,
1012
+ 0.79068,
1013
+ 0.46728,
1014
+ 0.54486,
1015
+ 0.60739,
1016
+ 0.46496,
1017
+ 0.61119,
1018
+ 0.38873,
1019
+ 0.56806,
1020
+ 0.747,
1021
+ 0.53613,
1022
+ 0.53121,
1023
+ 0.46506,
1024
+ 0.59626,
1025
+ 0.69317,
1026
+ 0.68011,
1027
+ 0.51598,
1028
+ 0.50257,
1029
+ 0.54439,
1030
+ 0.40571,
1031
+ 0.2189,
1032
+ 0.64132,
1033
+ 0.29015,
1034
+ 0.43577,
1035
+ 0.37661,
1036
+ 0.46952,
1037
+ 0.45527,
1038
+ 0.66985,
1039
+ 0.40971,
1040
+ 0.63007,
1041
+ 0.63755,
1042
+ 0.65143,
1043
+ 0.57865,
1044
+ 0.65552,
1045
+ 0.36992,
1046
+ 0.23763,
1047
+ 0.48393,
1048
+ 0.36113,
1049
+ 0.39058,
1050
+ 0.40755,
1051
+ 0.56333,
1052
+ 0.48995,
1053
+ 0.55673,
1054
+ 0.37367,
1055
+ 0.48381,
1056
+ 0.40106,
1057
+ 0.48643,
1058
+ 0.51592,
1059
+ 0.29743,
1060
+ 0.5026,
1061
+ 0.42763,
1062
+ 0.46854,
1063
+ 0.41662,
1064
+ 0.50732,
1065
+ 0.385,
1066
+ 0.61506,
1067
+ 0.49011,
1068
+ 0.36046,
1069
+ 0.5442,
1070
+ 0.61745833333,
1071
+ 0.392325,
1072
+ 0.4967625,
1073
+ 0.30943333333,
1074
+ 0.58880416667,
1075
+ 0.57861666667,
1076
+ 0.72248333333,
1077
+ 0.42585,
1078
+ 0.6050125,
1079
+ 0.64172083333,
1080
+ 0.4269375,
1081
+ 0.20662083333,
1082
+ 0.43435833333,
1083
+ 0.71460833333,
1084
+ 0.42285833333,
1085
+ 0.48760416667,
1086
+ 0.5523,
1087
+ 0.55450833333,
1088
+ 0.5237,
1089
+ 0.77244166667,
1090
+ 0.69525,
1091
+ 0.58763333333,
1092
+ 0.44484166667,
1093
+ 0.61220833333,
1094
+ 0.50095416667,
1095
+ 0.54782916667,
1096
+ 0.5573,
1097
+ 0.7095625,
1098
+ 0.41794583333,
1099
+ 0.49679166667,
1100
+ 0.4172,
1101
+ 0.53237916667,
1102
+ 0.48497083333,
1103
+ 0.608475,
1104
+ 0.55396666667,
1105
+ 0.62546666667
1106
+ ],
1107
+ "prints": [
1108
+ [
1109
+ "Last:0.63"
1110
+ ],
1111
+ [
1112
+ "Min:0.15"
1113
+ ],
1114
+ [
1115
+ "Max:0.89"
1116
+ ],
1117
+ [
1118
+ "Average:0.49"
1119
+ ]
1120
+ ],
1121
+ "last_value": 0.63,
1122
+ "minimum_value": 0.15,
1123
+ "maximum_value": 0.89,
1124
+ "average_value": 0.49
1125
+ },
1126
+ {
1127
+ "index_id": 4811,
1128
+ "metric_id": 11756,
1129
+ "metric": "used",
1130
+ "metric_legend": "used",
1131
+ "unit": "%",
1132
+ "hidden": 0,
1133
+ "min": null,
1134
+ "max": null,
1135
+ "virtual": 0,
1136
+ "ds_data": {
1137
+ "compo_id": 8,
1138
+ "host_id": null,
1139
+ "service_id": null,
1140
+ "name": "Used",
1141
+ "ds_order": 1,
1142
+ "ds_hidecurve": null,
1143
+ "ds_name": "used",
1144
+ "ds_color_line": "#2B28D7",
1145
+ "ds_color_line_mode": "0",
1146
+ "ds_color_area": "#050AF9",
1147
+ "ds_color_area_warn": null,
1148
+ "ds_color_area_crit": null,
1149
+ "ds_filled": "1",
1150
+ "ds_max": null,
1151
+ "ds_min": null,
1152
+ "ds_minmax_int": "0",
1153
+ "ds_average": "1",
1154
+ "ds_last": "1",
1155
+ "ds_total": "0",
1156
+ "ds_tickness": 1,
1157
+ "ds_transparency": "80",
1158
+ "ds_invert": null,
1159
+ "ds_legend": null,
1160
+ "ds_jumpline": "0",
1161
+ "ds_stack": null,
1162
+ "default_tpl1": null,
1163
+ "comment": null
1164
+ },
1165
+ "legend": "used",
1166
+ "stack": 0,
1167
+ "warn": null,
1168
+ "warn_low": null,
1169
+ "crit": null,
1170
+ "crit_low": null,
1171
+ "ds_color_area_warn": "#ff9a13",
1172
+ "ds_color_area_crit": "#e00b3d",
1173
+ "ds_order": 1,
1174
+ "data": [
1175
+ null,
1176
+ 75.3011875,
1177
+ 72.701875,
1178
+ 76.0167625,
1179
+ 77.1073125,
1180
+ 77.69285,
1181
+ 80.2417,
1182
+ 78.7382375,
1183
+ 79.45205,
1184
+ 81.0908625,
1185
+ 80.5548625,
1186
+ 80.668475,
1187
+ 78.979675,
1188
+ 79.0966875,
1189
+ 82.8746,
1190
+ 83.72185,
1191
+ 84.4060125,
1192
+ 88.59015,
1193
+ 90.0966875,
1194
+ 89.238625,
1195
+ 87.6741375,
1196
+ 86.301075,
1197
+ 85.9866375,
1198
+ 84.2715875,
1199
+ 80.7764375,
1200
+ 81.1740625,
1201
+ 80.62725,
1202
+ 82.847125,
1203
+ 84.5257125,
1204
+ 79.901275,
1205
+ 79.2864875,
1206
+ 80.3480625,
1207
+ 80.181925,
1208
+ 80.396225,
1209
+ 82.583625,
1210
+ 84.016875,
1211
+ 84.045875,
1212
+ 86.91195,
1213
+ 87.9055,
1214
+ 86.8288875,
1215
+ 81.1321375,
1216
+ 77.683675,
1217
+ 80.9037,
1218
+ 81.4005125,
1219
+ 80.3968625,
1220
+ 80.5861125,
1221
+ 80.9034875,
1222
+ 80.96685,
1223
+ 77.6486125,
1224
+ 78.8831625,
1225
+ 80.6013125,
1226
+ 82.2192125,
1227
+ 83.39895,
1228
+ 84.18365,
1229
+ 86.6931625,
1230
+ 87.6480875,
1231
+ 88.556875,
1232
+ 86.548725,
1233
+ 85.8728875,
1234
+ 87.7177,
1235
+ 87.7906,
1236
+ 88.5137875,
1237
+ 86.34185,
1238
+ 84.619306667,
1239
+ 86.954396667,
1240
+ 87.26102,
1241
+ 85.965446667,
1242
+ 81.80268,
1243
+ 78.111126667,
1244
+ 74.197206667,
1245
+ 77.399083333,
1246
+ 78.85909,
1247
+ 79.281386667,
1248
+ 82.736843333,
1249
+ 85.45574,
1250
+ 85.426433333,
1251
+ 89.254713333,
1252
+ 91.27352,
1253
+ 92.164943333,
1254
+ 90.351,
1255
+ 90.002126667,
1256
+ 91.9092,
1257
+ 95.647476667,
1258
+ 97.08391,
1259
+ 98.31337,
1260
+ 95.339653333,
1261
+ 95.52575,
1262
+ 93.628453333,
1263
+ 93.64629,
1264
+ 94.364876667,
1265
+ 91.26281,
1266
+ 94.746766667,
1267
+ 91.7748525,
1268
+ 88.535216667,
1269
+ 90.4502975,
1270
+ 91.635938333,
1271
+ 94.736506667,
1272
+ 95.6047775,
1273
+ 97.476596667,
1274
+ 94.989260833,
1275
+ 95.033961667,
1276
+ 96.242233333,
1277
+ 93.5059225,
1278
+ 94.352619167,
1279
+ 92.387683333,
1280
+ 94.498268333,
1281
+ 94.36248,
1282
+ 94.02465,
1283
+ 92.065673333,
1284
+ 90.508024167,
1285
+ 89.030559167,
1286
+ 87.58097,
1287
+ 89.509935,
1288
+ 92.812699167,
1289
+ 91.202060833,
1290
+ 91.9585075,
1291
+ 94.023786667,
1292
+ 92.90212,
1293
+ 90.4467425,
1294
+ 89.739971667,
1295
+ 92.775635,
1296
+ 93.825290833,
1297
+ 90.636063333,
1298
+ 89.875763333,
1299
+ 86.827475,
1300
+ 88.0182975,
1301
+ 91.871829167,
1302
+ 91.756616667,
1303
+ 91.505121667,
1304
+ 89.615869167,
1305
+ 91.229351667,
1306
+ 94.891750833,
1307
+ 94.960114167,
1308
+ 95.58294,
1309
+ 95.994029167,
1310
+ 95.9366675,
1311
+ 96.498086667,
1312
+ 97.487198333,
1313
+ 93.075826667,
1314
+ 94.302755833,
1315
+ 93.073150833,
1316
+ 90.271178333,
1317
+ 89.814095,
1318
+ 87.417926667,
1319
+ 86.022469167,
1320
+ 85.3772725,
1321
+ 85.730900833,
1322
+ 87.691193333,
1323
+ 88.513690833,
1324
+ 89.176271667,
1325
+ 89.875075,
1326
+ 92.313001667,
1327
+ 94.845433333,
1328
+ 96.612829167,
1329
+ 94.3659575,
1330
+ 94.697136667,
1331
+ 96.204745833,
1332
+ 97.567138333,
1333
+ 97.420164167,
1334
+ 98.677866667,
1335
+ 98.801283333,
1336
+ 98.172911667,
1337
+ 97.751070833,
1338
+ 96.347039167,
1339
+ 94.636588333,
1340
+ 92.814395,
1341
+ 92.377689167,
1342
+ 92.916798333,
1343
+ 93.032718333,
1344
+ 94.1146975,
1345
+ 93.295709167,
1346
+ 90.99396,
1347
+ 92.248504167,
1348
+ 93.131444167,
1349
+ 91.676540833,
1350
+ 93.38632,
1351
+ 95.87702,
1352
+ 95.42711,
1353
+ 96.049845,
1354
+ 98.458085833,
1355
+ 98.224996667,
1356
+ 95.8955225,
1357
+ 93.5389625,
1358
+ 90.5482675,
1359
+ 88.2340275,
1360
+ 87.588475,
1361
+ 85.262625833,
1362
+ 86.147955,
1363
+ 85.77075,
1364
+ 86.131816667,
1365
+ 86.20979,
1366
+ 84.288503333,
1367
+ 86.749560833,
1368
+ 82.449683333,
1369
+ 79.403566667,
1370
+ 80.40625,
1371
+ 77.62185,
1372
+ 77.505733333,
1373
+ 75.580283333,
1374
+ 75.1924,
1375
+ 74.935433333,
1376
+ 75.530216667,
1377
+ 76.428483333,
1378
+ 75.221,
1379
+ 75.210733333,
1380
+ 75.364483333,
1381
+ 74.642916667,
1382
+ 72.729216667,
1383
+ 72.219733333,
1384
+ 72.1265,
1385
+ 76.7763,
1386
+ 80.489316667,
1387
+ 81.445283333,
1388
+ 79.979783333,
1389
+ 81.412816667,
1390
+ 84.612216667,
1391
+ 87.098833333,
1392
+ 89.32225,
1393
+ 91.17525,
1394
+ 91.2465,
1395
+ 88.707333333,
1396
+ 88.058916667,
1397
+ 87.372083333,
1398
+ 84.8882,
1399
+ 84.867116667,
1400
+ 85.636633333,
1401
+ 83.310733333,
1402
+ 82.562333333,
1403
+ 81.755333333,
1404
+ 79.718333333,
1405
+ 77.312666667,
1406
+ 77.36875,
1407
+ 79.187666667,
1408
+ 80.764166667,
1409
+ 82.968083333,
1410
+ 81.657916667,
1411
+ 80.852166667,
1412
+ 82.371916667,
1413
+ 85.612,
1414
+ 84.52515,
1415
+ 81.67235,
1416
+ 83.9048,
1417
+ 85.694816667,
1418
+ 88.53345,
1419
+ 88.750566667,
1420
+ 87.80635,
1421
+ 87.07455,
1422
+ 87.095933333,
1423
+ 84.714483333,
1424
+ 84.81275,
1425
+ 88.785,
1426
+ 90.634,
1427
+ 91.73825,
1428
+ 93.27175,
1429
+ 91.766333333,
1430
+ 90.315,
1431
+ 86.82625,
1432
+ 86.059816667,
1433
+ 90.49965,
1434
+ 90.212416667,
1435
+ 91.374283333,
1436
+ 92.0294,
1437
+ 91.482916667,
1438
+ 94.464233333,
1439
+ 95.869833333,
1440
+ 97.885783333,
1441
+ 98.732733333,
1442
+ 97.9996,
1443
+ 97.174766667,
1444
+ 96.148283333,
1445
+ 97.29175,
1446
+ 96.05795,
1447
+ 96.3868,
1448
+ 97.399783333,
1449
+ 95.241033333,
1450
+ 96.880383333,
1451
+ 97.934975833,
1452
+ 95.40756,
1453
+ 93.9280425,
1454
+ 92.8780525,
1455
+ 90.131495,
1456
+ 89.3369225,
1457
+ 88.7673325,
1458
+ 87.5925,
1459
+ 88.31823,
1460
+ 92.36844,
1461
+ 90.9536425,
1462
+ 91.4629525,
1463
+ 88.317385,
1464
+ 86.5111225,
1465
+ 85.572935,
1466
+ 84.9701425,
1467
+ 86.193996667,
1468
+ 87.876206667,
1469
+ 91.04955,
1470
+ 92.813215,
1471
+ 92.907306667,
1472
+ 92.374458333,
1473
+ 93.688358333,
1474
+ 93.683388333,
1475
+ 93.016803333,
1476
+ 92.019563333,
1477
+ 93.503391667,
1478
+ 90.542578333,
1479
+ 92.529488333,
1480
+ 92.534118333,
1481
+ 93.654428333,
1482
+ 92.217821667,
1483
+ 93.979301667,
1484
+ 93.334701667,
1485
+ 90.995645,
1486
+ 89.265961667,
1487
+ 90.142598333,
1488
+ 92.359028333,
1489
+ 92.355875,
1490
+ 90.124831667,
1491
+ 90.137076667,
1492
+ 91.351265,
1493
+ 92.609895,
1494
+ 94.423845,
1495
+ 95.92939,
1496
+ 96.94342,
1497
+ 97.658953333,
1498
+ 98.350373333,
1499
+ 98.860638333,
1500
+ 97.971453333,
1501
+ 95.972083333,
1502
+ 92.49751,
1503
+ 90.06317,
1504
+ 90.96775,
1505
+ 92.706511667,
1506
+ 91.154745833,
1507
+ 93.041470833,
1508
+ 95.212069167,
1509
+ 95.547953333,
1510
+ 93.797341667,
1511
+ 94.932218333,
1512
+ 94.738048333,
1513
+ 92.303049167,
1514
+ 93.12273,
1515
+ 95.324159167,
1516
+ 97.788798333,
1517
+ 96.461085,
1518
+ 97.918005,
1519
+ 97.656589167,
1520
+ 95.453511667,
1521
+ 93.404599167,
1522
+ 96.0549925,
1523
+ 96.180735,
1524
+ 92.732435833,
1525
+ 90.8238375,
1526
+ 91.933284167,
1527
+ 91.178560833,
1528
+ 92.574173333,
1529
+ 91.4252825,
1530
+ 87.24002,
1531
+ 86.583490833,
1532
+ 86.893840833,
1533
+ 87.912079167,
1534
+ 85.586765,
1535
+ 78.548946667,
1536
+ 77.958821667,
1537
+ 79.511501667,
1538
+ 82.340836667,
1539
+ 81.43414,
1540
+ 82.6612425,
1541
+ 85.1368525,
1542
+ 84.618974167,
1543
+ 83.406545833,
1544
+ 83.217361667,
1545
+ 84.796903333,
1546
+ 88.710369167,
1547
+ 89.576425,
1548
+ 87.697465,
1549
+ 85.419298333,
1550
+ 89.328040833,
1551
+ 89.288233333,
1552
+ 89.594449167,
1553
+ 89.396855833,
1554
+ 89.352433333,
1555
+ 87.07019,
1556
+ 84.88146,
1557
+ 84.18839,
1558
+ 83.16835,
1559
+ 79.62206,
1560
+ 79.43043,
1561
+ 79.3563,
1562
+ 79.27835,
1563
+ 79.17697,
1564
+ 76.76732,
1565
+ 75.29581,
1566
+ 75.70572,
1567
+ 77.68538,
1568
+ 76.74653,
1569
+ 77.60974,
1570
+ 79.9725,
1571
+ 83.84825,
1572
+ 85.77623,
1573
+ 88.76174,
1574
+ 86.57208,
1575
+ 88.47665,
1576
+ 90.85134,
1577
+ 90.79955,
1578
+ 87.98236,
1579
+ 89.54416,
1580
+ 86.85839,
1581
+ 84.23926,
1582
+ 84.02244,
1583
+ 79.67462,
1584
+ 79.58342,
1585
+ 82.33326,
1586
+ 82.35789,
1587
+ 81.01324,
1588
+ 81.55955,
1589
+ 81.87204,
1590
+ 83.22185,
1591
+ 81.36665,
1592
+ 81.08699,
1593
+ 84.38985,
1594
+ 86.73615,
1595
+ 85.82253,
1596
+ 86.40703,
1597
+ 89.32901,
1598
+ 88.43318,
1599
+ 91.59042,
1600
+ 91.78025,
1601
+ 93.31614,
1602
+ 96.78994,
1603
+ 98.67566,
1604
+ 98.30026,
1605
+ 96.97067,
1606
+ 96.7663,
1607
+ 94.81573,
1608
+ 95.48175,
1609
+ 98.94147,
1610
+ 97.88792,
1611
+ 96.25044,
1612
+ 95.91016,
1613
+ 95.94154,
1614
+ 98.28326,
1615
+ 97.84947,
1616
+ 96.28364,
1617
+ 97.1102,
1618
+ 95.14073,
1619
+ 93.46838,
1620
+ 96.50306,
1621
+ 98.20423,
1622
+ 98.88803,
1623
+ 98.65825,
1624
+ 98.88318,
1625
+ 98.68902,
1626
+ 97.16819,
1627
+ 95.18848,
1628
+ 94.46906,
1629
+ 95.27017,
1630
+ 93.6273,
1631
+ 90.02585,
1632
+ 88.44419,
1633
+ 86.68886,
1634
+ 87.13106,
1635
+ 88.26944,
1636
+ 86.24131,
1637
+ 85.55237,
1638
+ 82.99216,
1639
+ 82.86858,
1640
+ 84.60967,
1641
+ 83.1773,
1642
+ 83.97271,
1643
+ 82.51906,
1644
+ 84.892720833,
1645
+ 86.416304167,
1646
+ 84.4,
1647
+ 86.107516667,
1648
+ 82.4546875,
1649
+ 79.498166667,
1650
+ 78.921458333,
1651
+ 76.025141667,
1652
+ 72.7244875,
1653
+ 72.484195833,
1654
+ 74.67945,
1655
+ 76.033079167,
1656
+ 74.760233333,
1657
+ 72.661283333,
1658
+ 74.655441667,
1659
+ 78.608441667,
1660
+ 78.245175,
1661
+ 77.557866667,
1662
+ 78.07075,
1663
+ 79.527925,
1664
+ 81.827258333,
1665
+ 84.270954167,
1666
+ 84.8338625,
1667
+ 87.5681375,
1668
+ 87.761895833,
1669
+ 88.1756375,
1670
+ 86.58295,
1671
+ 86.034920833,
1672
+ 82.764025,
1673
+ 83.575166667,
1674
+ 84.764741667,
1675
+ 86.313608333,
1676
+ 91.112654167,
1677
+ 90.49295,
1678
+ 92.0893625,
1679
+ 92.936327778
1680
+ ],
1681
+ "prints": [
1682
+ [
1683
+ "Last:92.94"
1684
+ ],
1685
+ [
1686
+ "Average:88.05"
1687
+ ]
1688
+ ],
1689
+ "last_value": 92.94,
1690
+ "minimum_value": null,
1691
+ "maximum_value": null,
1692
+ "average_value": 88.05
1693
+ }
1694
+ ],
1695
+ "times": [
1696
+ "2023-05-31T21:40:00+02:00",
1697
+ "2023-05-31T22:00:00+02:00",
1698
+ "2023-05-31T22:20:00+02:00",
1699
+ "2023-05-31T22:40:00+02:00",
1700
+ "2023-05-31T23:00:00+02:00",
1701
+ "2023-05-31T23:20:00+02:00",
1702
+ "2023-05-31T23:40:00+02:00",
1703
+ "2023-06-01T00:00:00+02:00",
1704
+ "2023-06-01T00:20:00+02:00",
1705
+ "2023-06-01T00:40:00+02:00",
1706
+ "2023-06-01T01:00:00+02:00",
1707
+ "2023-06-01T01:20:00+02:00",
1708
+ "2023-06-01T01:40:00+02:00",
1709
+ "2023-06-01T02:00:00+02:00",
1710
+ "2023-06-01T02:20:00+02:00",
1711
+ "2023-06-01T02:40:00+02:00",
1712
+ "2023-06-01T03:00:00+02:00",
1713
+ "2023-06-01T03:20:00+02:00",
1714
+ "2023-06-01T03:40:00+02:00",
1715
+ "2023-06-01T04:00:00+02:00",
1716
+ "2023-06-01T04:20:00+02:00",
1717
+ "2023-06-01T04:40:00+02:00",
1718
+ "2023-06-01T05:00:00+02:00",
1719
+ "2023-06-01T05:20:00+02:00",
1720
+ "2023-06-01T05:40:00+02:00",
1721
+ "2023-06-01T06:00:00+02:00",
1722
+ "2023-06-01T06:20:00+02:00",
1723
+ "2023-06-01T06:40:00+02:00",
1724
+ "2023-06-01T07:00:00+02:00",
1725
+ "2023-06-01T07:20:00+02:00",
1726
+ "2023-06-01T07:40:00+02:00",
1727
+ "2023-06-01T08:00:00+02:00",
1728
+ "2023-06-01T08:20:00+02:00",
1729
+ "2023-06-01T08:40:00+02:00",
1730
+ "2023-06-01T09:00:00+02:00",
1731
+ "2023-06-01T09:20:00+02:00",
1732
+ "2023-06-01T09:40:00+02:00",
1733
+ "2023-06-01T10:00:00+02:00",
1734
+ "2023-06-01T10:20:00+02:00",
1735
+ "2023-06-01T10:40:00+02:00",
1736
+ "2023-06-01T11:00:00+02:00",
1737
+ "2023-06-01T11:20:00+02:00",
1738
+ "2023-06-01T11:40:00+02:00",
1739
+ "2023-06-01T12:00:00+02:00",
1740
+ "2023-06-01T12:20:00+02:00",
1741
+ "2023-06-01T12:40:00+02:00",
1742
+ "2023-06-01T13:00:00+02:00",
1743
+ "2023-06-01T13:20:00+02:00",
1744
+ "2023-06-01T13:40:00+02:00",
1745
+ "2023-06-01T14:00:00+02:00",
1746
+ "2023-06-01T14:20:00+02:00",
1747
+ "2023-06-01T14:40:00+02:00",
1748
+ "2023-06-01T15:00:00+02:00",
1749
+ "2023-06-01T15:20:00+02:00",
1750
+ "2023-06-01T15:40:00+02:00",
1751
+ "2023-06-01T16:00:00+02:00",
1752
+ "2023-06-01T16:20:00+02:00",
1753
+ "2023-06-01T16:40:00+02:00",
1754
+ "2023-06-01T17:00:00+02:00",
1755
+ "2023-06-01T17:20:00+02:00",
1756
+ "2023-06-01T17:40:00+02:00",
1757
+ "2023-06-01T18:00:00+02:00",
1758
+ "2023-06-01T18:20:00+02:00",
1759
+ "2023-06-01T18:40:00+02:00",
1760
+ "2023-06-01T19:00:00+02:00",
1761
+ "2023-06-01T19:20:00+02:00",
1762
+ "2023-06-01T19:40:00+02:00",
1763
+ "2023-06-01T20:00:00+02:00",
1764
+ "2023-06-01T20:20:00+02:00",
1765
+ "2023-06-01T20:40:00+02:00",
1766
+ "2023-06-01T21:00:00+02:00",
1767
+ "2023-06-01T21:20:00+02:00",
1768
+ "2023-06-01T21:40:00+02:00",
1769
+ "2023-06-01T22:00:00+02:00",
1770
+ "2023-06-01T22:20:00+02:00",
1771
+ "2023-06-01T22:40:00+02:00",
1772
+ "2023-06-01T23:00:00+02:00",
1773
+ "2023-06-01T23:20:00+02:00",
1774
+ "2023-06-01T23:40:00+02:00",
1775
+ "2023-06-02T00:00:00+02:00",
1776
+ "2023-06-02T00:20:00+02:00",
1777
+ "2023-06-02T00:40:00+02:00",
1778
+ "2023-06-02T01:00:00+02:00",
1779
+ "2023-06-02T01:20:00+02:00",
1780
+ "2023-06-02T01:40:00+02:00",
1781
+ "2023-06-02T02:00:00+02:00",
1782
+ "2023-06-02T02:20:00+02:00",
1783
+ "2023-06-02T02:40:00+02:00",
1784
+ "2023-06-02T03:00:00+02:00",
1785
+ "2023-06-02T03:20:00+02:00",
1786
+ "2023-06-02T03:40:00+02:00",
1787
+ "2023-06-02T04:00:00+02:00",
1788
+ "2023-06-02T04:20:00+02:00",
1789
+ "2023-06-02T04:40:00+02:00",
1790
+ "2023-06-02T05:00:00+02:00",
1791
+ "2023-06-02T05:20:00+02:00",
1792
+ "2023-06-02T05:40:00+02:00",
1793
+ "2023-06-02T06:00:00+02:00",
1794
+ "2023-06-02T06:20:00+02:00",
1795
+ "2023-06-02T06:40:00+02:00",
1796
+ "2023-06-02T07:00:00+02:00",
1797
+ "2023-06-02T07:20:00+02:00",
1798
+ "2023-06-02T07:40:00+02:00",
1799
+ "2023-06-02T08:00:00+02:00",
1800
+ "2023-06-02T08:20:00+02:00",
1801
+ "2023-06-02T08:40:00+02:00",
1802
+ "2023-06-02T09:00:00+02:00",
1803
+ "2023-06-02T09:20:00+02:00",
1804
+ "2023-06-02T09:40:00+02:00",
1805
+ "2023-06-02T10:00:00+02:00",
1806
+ "2023-06-02T10:20:00+02:00",
1807
+ "2023-06-02T10:40:00+02:00",
1808
+ "2023-06-02T11:00:00+02:00",
1809
+ "2023-06-02T11:20:00+02:00",
1810
+ "2023-06-02T11:40:00+02:00",
1811
+ "2023-06-02T12:00:00+02:00",
1812
+ "2023-06-02T12:20:00+02:00",
1813
+ "2023-06-02T12:40:00+02:00",
1814
+ "2023-06-02T13:00:00+02:00",
1815
+ "2023-06-02T13:20:00+02:00",
1816
+ "2023-06-02T13:40:00+02:00",
1817
+ "2023-06-02T14:00:00+02:00",
1818
+ "2023-06-02T14:20:00+02:00",
1819
+ "2023-06-02T14:40:00+02:00",
1820
+ "2023-06-02T15:00:00+02:00",
1821
+ "2023-06-02T15:20:00+02:00",
1822
+ "2023-06-02T15:40:00+02:00",
1823
+ "2023-06-02T16:00:00+02:00",
1824
+ "2023-06-02T16:20:00+02:00",
1825
+ "2023-06-02T16:40:00+02:00",
1826
+ "2023-06-02T17:00:00+02:00",
1827
+ "2023-06-02T17:20:00+02:00",
1828
+ "2023-06-02T17:40:00+02:00",
1829
+ "2023-06-02T18:00:00+02:00",
1830
+ "2023-06-02T18:20:00+02:00",
1831
+ "2023-06-02T18:40:00+02:00",
1832
+ "2023-06-02T19:00:00+02:00",
1833
+ "2023-06-02T19:20:00+02:00",
1834
+ "2023-06-02T19:40:00+02:00",
1835
+ "2023-06-02T20:00:00+02:00",
1836
+ "2023-06-02T20:20:00+02:00",
1837
+ "2023-06-02T20:40:00+02:00",
1838
+ "2023-06-02T21:00:00+02:00",
1839
+ "2023-06-02T21:20:00+02:00",
1840
+ "2023-06-02T21:40:00+02:00",
1841
+ "2023-06-02T22:00:00+02:00",
1842
+ "2023-06-02T22:20:00+02:00",
1843
+ "2023-06-02T22:40:00+02:00",
1844
+ "2023-06-02T23:00:00+02:00",
1845
+ "2023-06-02T23:20:00+02:00",
1846
+ "2023-06-02T23:40:00+02:00",
1847
+ "2023-06-03T00:00:00+02:00",
1848
+ "2023-06-03T00:20:00+02:00",
1849
+ "2023-06-03T00:40:00+02:00",
1850
+ "2023-06-03T01:00:00+02:00",
1851
+ "2023-06-03T01:20:00+02:00",
1852
+ "2023-06-03T01:40:00+02:00",
1853
+ "2023-06-03T02:00:00+02:00",
1854
+ "2023-06-03T02:20:00+02:00",
1855
+ "2023-06-03T02:40:00+02:00",
1856
+ "2023-06-03T03:00:00+02:00",
1857
+ "2023-06-03T03:20:00+02:00",
1858
+ "2023-06-03T03:40:00+02:00",
1859
+ "2023-06-03T04:00:00+02:00",
1860
+ "2023-06-03T04:20:00+02:00",
1861
+ "2023-06-03T04:40:00+02:00",
1862
+ "2023-06-03T05:00:00+02:00",
1863
+ "2023-06-03T05:20:00+02:00",
1864
+ "2023-06-03T05:40:00+02:00",
1865
+ "2023-06-03T06:00:00+02:00",
1866
+ "2023-06-03T06:20:00+02:00",
1867
+ "2023-06-03T06:40:00+02:00",
1868
+ "2023-06-03T07:00:00+02:00",
1869
+ "2023-06-03T07:20:00+02:00",
1870
+ "2023-06-03T07:40:00+02:00",
1871
+ "2023-06-03T08:00:00+02:00",
1872
+ "2023-06-03T08:20:00+02:00",
1873
+ "2023-06-03T08:40:00+02:00",
1874
+ "2023-06-03T09:00:00+02:00",
1875
+ "2023-06-03T09:20:00+02:00",
1876
+ "2023-06-03T09:40:00+02:00",
1877
+ "2023-06-03T10:00:00+02:00",
1878
+ "2023-06-03T10:20:00+02:00",
1879
+ "2023-06-03T10:40:00+02:00",
1880
+ "2023-06-03T11:00:00+02:00",
1881
+ "2023-06-03T11:20:00+02:00",
1882
+ "2023-06-03T11:40:00+02:00",
1883
+ "2023-06-03T12:00:00+02:00",
1884
+ "2023-06-03T12:20:00+02:00",
1885
+ "2023-06-03T12:40:00+02:00",
1886
+ "2023-06-03T13:00:00+02:00",
1887
+ "2023-06-03T13:20:00+02:00",
1888
+ "2023-06-03T13:40:00+02:00",
1889
+ "2023-06-03T14:00:00+02:00",
1890
+ "2023-06-03T14:20:00+02:00",
1891
+ "2023-06-03T14:40:00+02:00",
1892
+ "2023-06-03T15:00:00+02:00",
1893
+ "2023-06-03T15:20:00+02:00",
1894
+ "2023-06-03T15:40:00+02:00",
1895
+ "2023-06-03T16:00:00+02:00",
1896
+ "2023-06-03T16:20:00+02:00",
1897
+ "2023-06-03T16:40:00+02:00",
1898
+ "2023-06-03T17:00:00+02:00",
1899
+ "2023-06-03T17:20:00+02:00",
1900
+ "2023-06-03T17:40:00+02:00",
1901
+ "2023-06-03T18:00:00+02:00",
1902
+ "2023-06-03T18:20:00+02:00",
1903
+ "2023-06-03T18:40:00+02:00",
1904
+ "2023-06-03T19:00:00+02:00",
1905
+ "2023-06-03T19:20:00+02:00",
1906
+ "2023-06-03T19:40:00+02:00",
1907
+ "2023-06-03T20:00:00+02:00",
1908
+ "2023-06-03T20:20:00+02:00",
1909
+ "2023-06-03T20:40:00+02:00",
1910
+ "2023-06-03T21:00:00+02:00",
1911
+ "2023-06-03T21:20:00+02:00",
1912
+ "2023-06-03T21:40:00+02:00",
1913
+ "2023-06-03T22:00:00+02:00",
1914
+ "2023-06-03T22:20:00+02:00",
1915
+ "2023-06-03T22:40:00+02:00",
1916
+ "2023-06-03T23:00:00+02:00",
1917
+ "2023-06-03T23:20:00+02:00",
1918
+ "2023-06-03T23:40:00+02:00",
1919
+ "2023-06-04T00:00:00+02:00",
1920
+ "2023-06-04T00:20:00+02:00",
1921
+ "2023-06-04T00:40:00+02:00",
1922
+ "2023-06-04T01:00:00+02:00",
1923
+ "2023-06-04T01:20:00+02:00",
1924
+ "2023-06-04T01:40:00+02:00",
1925
+ "2023-06-04T02:00:00+02:00",
1926
+ "2023-06-04T02:20:00+02:00",
1927
+ "2023-06-04T02:40:00+02:00",
1928
+ "2023-06-04T03:00:00+02:00",
1929
+ "2023-06-04T03:20:00+02:00",
1930
+ "2023-06-04T03:40:00+02:00",
1931
+ "2023-06-04T04:00:00+02:00",
1932
+ "2023-06-04T04:20:00+02:00",
1933
+ "2023-06-04T04:40:00+02:00",
1934
+ "2023-06-04T05:00:00+02:00",
1935
+ "2023-06-04T05:20:00+02:00",
1936
+ "2023-06-04T05:40:00+02:00",
1937
+ "2023-06-04T06:00:00+02:00",
1938
+ "2023-06-04T06:20:00+02:00",
1939
+ "2023-06-04T06:40:00+02:00",
1940
+ "2023-06-04T07:00:00+02:00",
1941
+ "2023-06-04T07:20:00+02:00",
1942
+ "2023-06-04T07:40:00+02:00",
1943
+ "2023-06-04T08:00:00+02:00",
1944
+ "2023-06-04T08:20:00+02:00",
1945
+ "2023-06-04T08:40:00+02:00",
1946
+ "2023-06-04T09:00:00+02:00",
1947
+ "2023-06-04T09:20:00+02:00",
1948
+ "2023-06-04T09:40:00+02:00",
1949
+ "2023-06-04T10:00:00+02:00",
1950
+ "2023-06-04T10:20:00+02:00",
1951
+ "2023-06-04T10:40:00+02:00",
1952
+ "2023-06-04T11:00:00+02:00",
1953
+ "2023-06-04T11:20:00+02:00",
1954
+ "2023-06-04T11:40:00+02:00",
1955
+ "2023-06-04T12:00:00+02:00",
1956
+ "2023-06-04T12:20:00+02:00",
1957
+ "2023-06-04T12:40:00+02:00",
1958
+ "2023-06-04T13:00:00+02:00",
1959
+ "2023-06-04T13:20:00+02:00",
1960
+ "2023-06-04T13:40:00+02:00",
1961
+ "2023-06-04T14:00:00+02:00",
1962
+ "2023-06-04T14:20:00+02:00",
1963
+ "2023-06-04T14:40:00+02:00",
1964
+ "2023-06-04T15:00:00+02:00",
1965
+ "2023-06-04T15:20:00+02:00",
1966
+ "2023-06-04T15:40:00+02:00",
1967
+ "2023-06-04T16:00:00+02:00",
1968
+ "2023-06-04T16:20:00+02:00",
1969
+ "2023-06-04T16:40:00+02:00",
1970
+ "2023-06-04T17:00:00+02:00",
1971
+ "2023-06-04T17:20:00+02:00",
1972
+ "2023-06-04T17:40:00+02:00",
1973
+ "2023-06-04T18:00:00+02:00",
1974
+ "2023-06-04T18:20:00+02:00",
1975
+ "2023-06-04T18:40:00+02:00",
1976
+ "2023-06-04T19:00:00+02:00",
1977
+ "2023-06-04T19:20:00+02:00",
1978
+ "2023-06-04T19:40:00+02:00",
1979
+ "2023-06-04T20:00:00+02:00",
1980
+ "2023-06-04T20:20:00+02:00",
1981
+ "2023-06-04T20:40:00+02:00",
1982
+ "2023-06-04T21:00:00+02:00",
1983
+ "2023-06-04T21:20:00+02:00",
1984
+ "2023-06-04T21:40:00+02:00",
1985
+ "2023-06-04T22:00:00+02:00",
1986
+ "2023-06-04T22:20:00+02:00",
1987
+ "2023-06-04T22:40:00+02:00",
1988
+ "2023-06-04T23:00:00+02:00",
1989
+ "2023-06-04T23:20:00+02:00",
1990
+ "2023-06-04T23:40:00+02:00",
1991
+ "2023-06-05T00:00:00+02:00",
1992
+ "2023-06-05T00:20:00+02:00",
1993
+ "2023-06-05T00:40:00+02:00",
1994
+ "2023-06-05T01:00:00+02:00",
1995
+ "2023-06-05T01:20:00+02:00",
1996
+ "2023-06-05T01:40:00+02:00",
1997
+ "2023-06-05T02:00:00+02:00",
1998
+ "2023-06-05T02:20:00+02:00",
1999
+ "2023-06-05T02:40:00+02:00",
2000
+ "2023-06-05T03:00:00+02:00",
2001
+ "2023-06-05T03:20:00+02:00",
2002
+ "2023-06-05T03:40:00+02:00",
2003
+ "2023-06-05T04:00:00+02:00",
2004
+ "2023-06-05T04:20:00+02:00",
2005
+ "2023-06-05T04:40:00+02:00",
2006
+ "2023-06-05T05:00:00+02:00",
2007
+ "2023-06-05T05:20:00+02:00",
2008
+ "2023-06-05T05:40:00+02:00",
2009
+ "2023-06-05T06:00:00+02:00",
2010
+ "2023-06-05T06:20:00+02:00",
2011
+ "2023-06-05T06:40:00+02:00",
2012
+ "2023-06-05T07:00:00+02:00",
2013
+ "2023-06-05T07:20:00+02:00",
2014
+ "2023-06-05T07:40:00+02:00",
2015
+ "2023-06-05T08:00:00+02:00",
2016
+ "2023-06-05T08:20:00+02:00",
2017
+ "2023-06-05T08:40:00+02:00",
2018
+ "2023-06-05T09:00:00+02:00",
2019
+ "2023-06-05T09:20:00+02:00",
2020
+ "2023-06-05T09:40:00+02:00",
2021
+ "2023-06-05T10:00:00+02:00",
2022
+ "2023-06-05T10:20:00+02:00",
2023
+ "2023-06-05T10:40:00+02:00",
2024
+ "2023-06-05T11:00:00+02:00",
2025
+ "2023-06-05T11:20:00+02:00",
2026
+ "2023-06-05T11:40:00+02:00",
2027
+ "2023-06-05T12:00:00+02:00",
2028
+ "2023-06-05T12:20:00+02:00",
2029
+ "2023-06-05T12:40:00+02:00",
2030
+ "2023-06-05T13:00:00+02:00",
2031
+ "2023-06-05T13:20:00+02:00",
2032
+ "2023-06-05T13:40:00+02:00",
2033
+ "2023-06-05T14:00:00+02:00",
2034
+ "2023-06-05T14:20:00+02:00",
2035
+ "2023-06-05T14:40:00+02:00",
2036
+ "2023-06-05T15:00:00+02:00",
2037
+ "2023-06-05T15:20:00+02:00",
2038
+ "2023-06-05T15:40:00+02:00",
2039
+ "2023-06-05T16:00:00+02:00",
2040
+ "2023-06-05T16:20:00+02:00",
2041
+ "2023-06-05T16:40:00+02:00",
2042
+ "2023-06-05T17:00:00+02:00",
2043
+ "2023-06-05T17:20:00+02:00",
2044
+ "2023-06-05T17:40:00+02:00",
2045
+ "2023-06-05T18:00:00+02:00",
2046
+ "2023-06-05T18:20:00+02:00",
2047
+ "2023-06-05T18:40:00+02:00",
2048
+ "2023-06-05T19:00:00+02:00",
2049
+ "2023-06-05T19:20:00+02:00",
2050
+ "2023-06-05T19:40:00+02:00",
2051
+ "2023-06-05T20:00:00+02:00",
2052
+ "2023-06-05T20:20:00+02:00",
2053
+ "2023-06-05T20:40:00+02:00",
2054
+ "2023-06-05T21:00:00+02:00",
2055
+ "2023-06-05T21:20:00+02:00",
2056
+ "2023-06-05T21:40:00+02:00",
2057
+ "2023-06-05T22:00:00+02:00",
2058
+ "2023-06-05T22:20:00+02:00",
2059
+ "2023-06-05T22:40:00+02:00",
2060
+ "2023-06-05T23:00:00+02:00",
2061
+ "2023-06-05T23:20:00+02:00",
2062
+ "2023-06-05T23:40:00+02:00",
2063
+ "2023-06-06T00:00:00+02:00",
2064
+ "2023-06-06T00:20:00+02:00",
2065
+ "2023-06-06T00:40:00+02:00",
2066
+ "2023-06-06T01:00:00+02:00",
2067
+ "2023-06-06T01:20:00+02:00",
2068
+ "2023-06-06T01:40:00+02:00",
2069
+ "2023-06-06T02:00:00+02:00",
2070
+ "2023-06-06T02:20:00+02:00",
2071
+ "2023-06-06T02:40:00+02:00",
2072
+ "2023-06-06T03:00:00+02:00",
2073
+ "2023-06-06T03:20:00+02:00",
2074
+ "2023-06-06T03:40:00+02:00",
2075
+ "2023-06-06T04:00:00+02:00",
2076
+ "2023-06-06T04:20:00+02:00",
2077
+ "2023-06-06T04:40:00+02:00",
2078
+ "2023-06-06T05:00:00+02:00",
2079
+ "2023-06-06T05:20:00+02:00",
2080
+ "2023-06-06T05:40:00+02:00",
2081
+ "2023-06-06T06:00:00+02:00",
2082
+ "2023-06-06T06:20:00+02:00",
2083
+ "2023-06-06T06:40:00+02:00",
2084
+ "2023-06-06T07:00:00+02:00",
2085
+ "2023-06-06T07:20:00+02:00",
2086
+ "2023-06-06T07:40:00+02:00",
2087
+ "2023-06-06T08:00:00+02:00",
2088
+ "2023-06-06T08:20:00+02:00",
2089
+ "2023-06-06T08:40:00+02:00",
2090
+ "2023-06-06T09:00:00+02:00",
2091
+ "2023-06-06T09:20:00+02:00",
2092
+ "2023-06-06T09:40:00+02:00",
2093
+ "2023-06-06T10:00:00+02:00",
2094
+ "2023-06-06T10:20:00+02:00",
2095
+ "2023-06-06T10:40:00+02:00",
2096
+ "2023-06-06T11:00:00+02:00",
2097
+ "2023-06-06T11:20:00+02:00",
2098
+ "2023-06-06T11:40:00+02:00",
2099
+ "2023-06-06T12:00:00+02:00",
2100
+ "2023-06-06T12:20:00+02:00",
2101
+ "2023-06-06T12:40:00+02:00",
2102
+ "2023-06-06T13:00:00+02:00",
2103
+ "2023-06-06T13:20:00+02:00",
2104
+ "2023-06-06T13:40:00+02:00",
2105
+ "2023-06-06T14:00:00+02:00",
2106
+ "2023-06-06T14:20:00+02:00",
2107
+ "2023-06-06T14:40:00+02:00",
2108
+ "2023-06-06T15:00:00+02:00",
2109
+ "2023-06-06T15:20:00+02:00",
2110
+ "2023-06-06T15:40:00+02:00",
2111
+ "2023-06-06T16:00:00+02:00",
2112
+ "2023-06-06T16:20:00+02:00",
2113
+ "2023-06-06T16:40:00+02:00",
2114
+ "2023-06-06T17:00:00+02:00",
2115
+ "2023-06-06T17:20:00+02:00",
2116
+ "2023-06-06T17:40:00+02:00",
2117
+ "2023-06-06T18:00:00+02:00",
2118
+ "2023-06-06T18:20:00+02:00",
2119
+ "2023-06-06T18:40:00+02:00",
2120
+ "2023-06-06T19:00:00+02:00",
2121
+ "2023-06-06T19:20:00+02:00",
2122
+ "2023-06-06T19:40:00+02:00",
2123
+ "2023-06-06T20:00:00+02:00",
2124
+ "2023-06-06T20:20:00+02:00",
2125
+ "2023-06-06T20:40:00+02:00",
2126
+ "2023-06-06T21:00:00+02:00",
2127
+ "2023-06-06T21:20:00+02:00",
2128
+ "2023-06-06T21:40:00+02:00",
2129
+ "2023-06-06T22:00:00+02:00",
2130
+ "2023-06-06T22:20:00+02:00",
2131
+ "2023-06-06T22:40:00+02:00",
2132
+ "2023-06-06T23:00:00+02:00",
2133
+ "2023-06-06T23:20:00+02:00",
2134
+ "2023-06-06T23:40:00+02:00",
2135
+ "2023-06-07T00:00:00+02:00",
2136
+ "2023-06-07T00:20:00+02:00",
2137
+ "2023-06-07T00:40:00+02:00",
2138
+ "2023-06-07T01:00:00+02:00",
2139
+ "2023-06-07T01:20:00+02:00",
2140
+ "2023-06-07T01:40:00+02:00",
2141
+ "2023-06-07T02:00:00+02:00",
2142
+ "2023-06-07T02:20:00+02:00",
2143
+ "2023-06-07T02:40:00+02:00",
2144
+ "2023-06-07T03:00:00+02:00",
2145
+ "2023-06-07T03:20:00+02:00",
2146
+ "2023-06-07T03:40:00+02:00",
2147
+ "2023-06-07T04:00:00+02:00",
2148
+ "2023-06-07T04:20:00+02:00",
2149
+ "2023-06-07T04:40:00+02:00",
2150
+ "2023-06-07T05:00:00+02:00",
2151
+ "2023-06-07T05:20:00+02:00",
2152
+ "2023-06-07T05:40:00+02:00",
2153
+ "2023-06-07T06:00:00+02:00",
2154
+ "2023-06-07T06:20:00+02:00",
2155
+ "2023-06-07T06:40:00+02:00",
2156
+ "2023-06-07T07:00:00+02:00",
2157
+ "2023-06-07T07:20:00+02:00",
2158
+ "2023-06-07T07:40:00+02:00",
2159
+ "2023-06-07T08:00:00+02:00",
2160
+ "2023-06-07T08:20:00+02:00",
2161
+ "2023-06-07T08:40:00+02:00",
2162
+ "2023-06-07T09:00:00+02:00",
2163
+ "2023-06-07T09:20:00+02:00",
2164
+ "2023-06-07T09:40:00+02:00",
2165
+ "2023-06-07T10:00:00+02:00",
2166
+ "2023-06-07T10:20:00+02:00",
2167
+ "2023-06-07T10:40:00+02:00",
2168
+ "2023-06-07T11:00:00+02:00",
2169
+ "2023-06-07T11:20:00+02:00",
2170
+ "2023-06-07T11:40:00+02:00",
2171
+ "2023-06-07T12:00:00+02:00",
2172
+ "2023-06-07T12:20:00+02:00",
2173
+ "2023-06-07T12:40:00+02:00",
2174
+ "2023-06-07T13:00:00+02:00",
2175
+ "2023-06-07T13:20:00+02:00",
2176
+ "2023-06-07T13:40:00+02:00",
2177
+ "2023-06-07T14:00:00+02:00",
2178
+ "2023-06-07T14:20:00+02:00",
2179
+ "2023-06-07T14:40:00+02:00",
2180
+ "2023-06-07T15:00:00+02:00",
2181
+ "2023-06-07T15:20:00+02:00",
2182
+ "2023-06-07T15:40:00+02:00",
2183
+ "2023-06-07T16:00:00+02:00",
2184
+ "2023-06-07T16:20:00+02:00",
2185
+ "2023-06-07T16:40:00+02:00",
2186
+ "2023-06-07T17:00:00+02:00",
2187
+ "2023-06-07T17:20:00+02:00",
2188
+ "2023-06-07T17:40:00+02:00",
2189
+ "2023-06-07T18:00:00+02:00",
2190
+ "2023-06-07T18:20:00+02:00",
2191
+ "2023-06-07T18:40:00+02:00",
2192
+ "2023-06-07T19:00:00+02:00",
2193
+ "2023-06-07T19:20:00+02:00",
2194
+ "2023-06-07T19:40:00+02:00",
2195
+ "2023-06-07T20:00:00+02:00",
2196
+ "2023-06-07T20:20:00+02:00",
2197
+ "2023-06-07T20:40:00+02:00",
2198
+ "2023-06-07T21:00:00+02:00",
2199
+ "2023-06-07T21:20:00+02:00",
2200
+ "2023-06-07T21:40:00+02:00"
2201
+ ]
2202
+ }