@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,1674 @@
1
+ {
2
+ "global": {
3
+ "title": "oracle-shared-spool-ratio graph on srv-oracle-crm",
4
+ "start": "2023-04-22T16:01:06+02:00",
5
+ "end": "2023-05-23T16:01:06+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": 5320,
16
+ "metric_id": 12879,
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": "#990033"
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.50033458333,
46
+ 0.61945916667,
47
+ 0.51819333333,
48
+ 0.60382916667,
49
+ 0.49840361111,
50
+ 0.49933972222,
51
+ 0.55467208333,
52
+ 0.56382444444,
53
+ 0.62704972222,
54
+ 0.54424180556,
55
+ 0.50082777778,
56
+ 0.45984555556,
57
+ 0.49584861111,
58
+ 0.35677083333,
59
+ 0.47271861111,
60
+ 0.52795972222,
61
+ 0.45791944444,
62
+ 0.43084166667,
63
+ 0.502125,
64
+ 0.38325833333,
65
+ 0.594375,
66
+ 0.594125,
67
+ 0.45928333333,
68
+ 0.5255,
69
+ 0.41265,
70
+ 0.40810833333,
71
+ 0.5416,
72
+ 0.48815,
73
+ 0.42519166667,
74
+ 0.58961666667,
75
+ 0.41775833333,
76
+ 0.43450833333,
77
+ 0.4493,
78
+ 0.39341666667,
79
+ 0.49969166667,
80
+ 0.50023333333,
81
+ 0.46121305556,
82
+ 0.5069475,
83
+ 0.50755055556,
84
+ 0.44471013889,
85
+ 0.47222291667,
86
+ 0.45869027778,
87
+ 0.41597888889,
88
+ 0.59415055556,
89
+ 0.52623305556,
90
+ 0.54249277778,
91
+ 0.58356333333,
92
+ 0.46177041667,
93
+ 0.49658555556,
94
+ 0.60377222222,
95
+ 0.56200958333,
96
+ 0.63443444444,
97
+ 0.52070555556,
98
+ 0.6246475,
99
+ 0.52999069444,
100
+ 0.42607777778,
101
+ 0.55257444444,
102
+ 0.45891888889,
103
+ 0.51791611111,
104
+ 0.423755,
105
+ 0.45616666667,
106
+ 0.54159055556,
107
+ 0.46024222222,
108
+ 0.41285333333,
109
+ 0.48092277778,
110
+ 0.46342777778,
111
+ 0.57123,
112
+ 0.56956111111,
113
+ 0.58442833333,
114
+ 0.52641388889,
115
+ 0.46058166667,
116
+ 0.40469458333,
117
+ 0.54256736111,
118
+ 0.56656111111,
119
+ 0.54332777778,
120
+ 0.49598680556,
121
+ 0.59200763889,
122
+ 0.44712708333,
123
+ 0.55852083333,
124
+ 0.58329166667,
125
+ 0.53323611111,
126
+ 0.57300416667,
127
+ 0.52716597222,
128
+ 0.40442291667,
129
+ 0.42211111111,
130
+ 0.63572708333,
131
+ 0.55759166667,
132
+ 0.46749166667,
133
+ 0.37702361111,
134
+ 0.56483055556,
135
+ 0.47474236111,
136
+ 0.43567847222,
137
+ 0.50577638889,
138
+ 0.44973305556,
139
+ 0.52211083333,
140
+ 0.44430083333,
141
+ 0.48803333333,
142
+ 0.42062833333,
143
+ 0.5597925,
144
+ 0.50754166667,
145
+ 0.4506775,
146
+ 0.38088333333,
147
+ 0.53365583333,
148
+ 0.43125333333,
149
+ 0.44724166667,
150
+ 0.44108833333,
151
+ 0.49138916667,
152
+ 0.610585,
153
+ 0.578545,
154
+ 0.49276666667,
155
+ 0.51599833333,
156
+ 0.55685166667,
157
+ 0.50467416667,
158
+ 0.51643916667,
159
+ 0.50236833333,
160
+ 0.60251916667,
161
+ 0.38275916667,
162
+ 0.4105925,
163
+ 0.48575833333,
164
+ 0.43170166667,
165
+ 0.63278916667,
166
+ 0.416565,
167
+ 0.46697902778,
168
+ 0.4740475,
169
+ 0.44771,
170
+ 0.59884472222,
171
+ 0.4627625,
172
+ 0.4531975,
173
+ 0.60965916667,
174
+ 0.63874180556,
175
+ 0.51233305556,
176
+ 0.55861527778,
177
+ 0.50454416667,
178
+ 0.43259527778,
179
+ 0.51321444444,
180
+ 0.48314888889,
181
+ 0.59840555556,
182
+ 0.55625777778,
183
+ 0.46488611111,
184
+ 0.45740694444,
185
+ 0.51038611111,
186
+ 0.61267083333,
187
+ 0.51206944444,
188
+ 0.56741666667,
189
+ 0.58174305556,
190
+ 0.38422222222,
191
+ 0.55132083333,
192
+ 0.54504722222,
193
+ 0.48465,
194
+ 0.47887083333,
195
+ 0.46282638889,
196
+ 0.48750277778,
197
+ 0.53763055556,
198
+ 0.53980833333,
199
+ 0.42661527778,
200
+ 0.4728375,
201
+ 0.46515694444,
202
+ 0.50543333333,
203
+ 0.58466666667,
204
+ 0.4641875,
205
+ 0.42224305556,
206
+ 0.45730555556,
207
+ 0.53627777778,
208
+ 0.49995833333,
209
+ 0.53940972222,
210
+ 0.41956944444,
211
+ 0.45699305556,
212
+ 0.52835416667,
213
+ 0.50822222222,
214
+ 0.44841666667,
215
+ 0.43936111111,
216
+ 0.54340277778,
217
+ 0.46944444444,
218
+ 0.57169444444,
219
+ 0.52923611111,
220
+ 0.56581944444,
221
+ 0.56853472222,
222
+ 0.59384027778,
223
+ 0.46910555556,
224
+ 0.43805694444,
225
+ 0.58207083333,
226
+ 0.55213888889,
227
+ 0.44952777778,
228
+ 0.47930555556,
229
+ 0.44179861111,
230
+ 0.41134027778,
231
+ 0.42866666667,
232
+ 0.511375,
233
+ 0.50978472222,
234
+ 0.477875,
235
+ 0.53188194444,
236
+ 0.44010416667,
237
+ 0.48233333333,
238
+ 0.55613347222,
239
+ 0.47067416667,
240
+ 0.54952611111,
241
+ 0.52073277778,
242
+ 0.50571736111,
243
+ 0.61287555556,
244
+ 0.48102388889,
245
+ 0.49271569444,
246
+ 0.44343125,
247
+ 0.53625333333,
248
+ 0.563685,
249
+ 0.466765,
250
+ 0.49876166667,
251
+ 0.47815333333,
252
+ 0.49052666667,
253
+ 0.40544,
254
+ 0.558505,
255
+ 0.504925,
256
+ 0.56809666667,
257
+ 0.51643166667,
258
+ 0.500375,
259
+ 0.46229833333,
260
+ 0.41243,
261
+ 0.39154166667,
262
+ 0.46627166667,
263
+ 0.55276111111,
264
+ 0.39044694444,
265
+ 0.56729583333,
266
+ 0.56158388889,
267
+ 0.41965333333,
268
+ 0.52013361111,
269
+ 0.39681166667,
270
+ 0.50957805556,
271
+ 0.51941666667,
272
+ 0.55553763889,
273
+ 0.46638333333,
274
+ 0.44483722222,
275
+ 0.57280722222,
276
+ 0.68180791667,
277
+ 0.48812944444,
278
+ 0.59093375,
279
+ 0.54439763889,
280
+ 0.48189972222,
281
+ 0.49061152778,
282
+ 0.59989930556,
283
+ 0.58490055556,
284
+ 0.61258930556,
285
+ 0.60397902778,
286
+ 0.52981402778,
287
+ 0.50435,
288
+ 0.41884722222,
289
+ 0.45518055556,
290
+ 0.46851111111,
291
+ 0.61096944444,
292
+ 0.49326944444,
293
+ 0.419725,
294
+ 0.46484722222,
295
+ 0.48892222222,
296
+ 0.42955,
297
+ 0.53626388889,
298
+ 0.56575833333,
299
+ 0.50948888889,
300
+ 0.46735555556,
301
+ 0.51255555556,
302
+ 0.50625555556,
303
+ 0.49493333333,
304
+ 0.45309444444,
305
+ 0.44096111111,
306
+ 0.52035277778,
307
+ 0.41961388889,
308
+ 0.4463,
309
+ 0.48494444444,
310
+ 0.55550277778,
311
+ 0.51151111111,
312
+ 0.53519444444,
313
+ 0.39882902778,
314
+ 0.47607,
315
+ 0.47141388889,
316
+ 0.54625083333,
317
+ 0.49487166667,
318
+ 0.56357083333,
319
+ 0.54315833333,
320
+ 0.55606277778,
321
+ 0.46999027778,
322
+ 0.60634083333,
323
+ 0.45837861111,
324
+ 0.46508805556,
325
+ 0.46517861111,
326
+ 0.50517722222,
327
+ 0.49639833333,
328
+ 0.45971111111,
329
+ 0.53749027778,
330
+ 0.42077611111,
331
+ 0.36337027778,
332
+ 0.57174166667,
333
+ 0.51783333333,
334
+ 0.46205166667,
335
+ 0.54008333333,
336
+ 0.46243833333,
337
+ 0.49854333333,
338
+ 0.52208666667,
339
+ 0.45309833333,
340
+ 0.54164166667,
341
+ 0.50293666667,
342
+ 0.58052444444,
343
+ 0.48480416667,
344
+ 0.44963611111,
345
+ 0.57046319444,
346
+ 0.49653611111,
347
+ 0.55977222222,
348
+ 0.46650694444,
349
+ 0.57683680556,
350
+ 0.37171111111,
351
+ 0.46325,
352
+ 0.48231680556,
353
+ 0.48979055556,
354
+ 0.51859361111,
355
+ 0.50016222222,
356
+ 0.45968583333,
357
+ 0.51421583333,
358
+ 0.56765638889,
359
+ 0.57335111111,
360
+ 0.41111875,
361
+ 0.50796958333,
362
+ 0.395305,
363
+ 0.48056722222,
364
+ 0.49464361111,
365
+ 0.46999875,
366
+ 0.44863527778,
367
+ 0.44513208333,
368
+ 0.52571097222,
369
+ 0.59808069444,
370
+ 0.51411833333,
371
+ 0.61205444444,
372
+ 0.52014583333,
373
+ 0.44387916667,
374
+ 0.47595416667,
375
+ 0.4776,
376
+ 0.54218333333,
377
+ 0.42116666667,
378
+ 0.41662916667,
379
+ 0.47499583333,
380
+ 0.55535416667,
381
+ 0.44424583333,
382
+ 0.4812375,
383
+ 0.54995,
384
+ 0.4826875,
385
+ 0.46228333333,
386
+ 0.42069166667,
387
+ 0.50894583333,
388
+ 0.52455305556,
389
+ 0.43574513889,
390
+ 0.47146680556,
391
+ 0.52494444444,
392
+ 0.61506833333,
393
+ 0.34888958333,
394
+ 0.53983305556,
395
+ 0.51920916667,
396
+ 0.46683319444,
397
+ 0.58013,
398
+ 0.39148333333,
399
+ 0.52852666667,
400
+ 0.49618611111,
401
+ 0.42079,
402
+ 0.44302666667,
403
+ 0.61560833333,
404
+ 0.40733777778,
405
+ 0.55178333333,
406
+ 0.5079175,
407
+ 0.47183541667,
408
+ 0.517075,
409
+ 0.38027541667,
410
+ 0.51537569444,
411
+ 0.40031805556,
412
+ 0.51048138889,
413
+ 0.59283166667,
414
+ 0.49227166667,
415
+ 0.48328611111,
416
+ 0.52946541667,
417
+ null
418
+ ],
419
+ "prints": [
420
+ [
421
+ "Last:0.53"
422
+ ],
423
+ [
424
+ "Min:0.35"
425
+ ],
426
+ [
427
+ "Max:0.68"
428
+ ],
429
+ [
430
+ "Average:0.50"
431
+ ]
432
+ ],
433
+ "last_value": 0.53,
434
+ "minimum_value": 0.35,
435
+ "maximum_value": 0.68,
436
+ "average_value": 0.5
437
+ },
438
+ {
439
+ "index_id": 5320,
440
+ "metric_id": 12878,
441
+ "metric": "querytime",
442
+ "metric_legend": "querytime",
443
+ "unit": "s",
444
+ "hidden": 0,
445
+ "min": null,
446
+ "max": null,
447
+ "virtual": 0,
448
+ "ds_data": {
449
+ "ds_min": "1",
450
+ "ds_max": "1",
451
+ "ds_minmax_int": "0",
452
+ "ds_last": "1",
453
+ "ds_average": "1",
454
+ "ds_total": "0",
455
+ "ds_tickness": 1,
456
+ "ds_color_line_mode": "1",
457
+ "ds_color_line": "#ff3333"
458
+ },
459
+ "legend": "querytime",
460
+ "stack": 0,
461
+ "warn": null,
462
+ "warn_low": null,
463
+ "crit": null,
464
+ "crit_low": null,
465
+ "ds_color_area_warn": "#ff9a13",
466
+ "ds_color_area_crit": "#e00b3d",
467
+ "ds_order": 0,
468
+ "data": [
469
+ 0.4820075,
470
+ 0.54786666667,
471
+ 0.537675,
472
+ 0.44466583333,
473
+ 0.56231069444,
474
+ 0.51092194444,
475
+ 0.50375861111,
476
+ 0.51052875,
477
+ 0.50798208333,
478
+ 0.44864861111,
479
+ 0.4147725,
480
+ 0.50207305556,
481
+ 0.49094888889,
482
+ 0.50487722222,
483
+ 0.51480555556,
484
+ 0.60383333333,
485
+ 0.57061194444,
486
+ 0.56269166667,
487
+ 0.50226666667,
488
+ 0.36955,
489
+ 0.48694166667,
490
+ 0.5011,
491
+ 0.50590833333,
492
+ 0.39789166667,
493
+ 0.43364166667,
494
+ 0.46898333333,
495
+ 0.5747,
496
+ 0.43391666667,
497
+ 0.58044166667,
498
+ 0.55174166667,
499
+ 0.462675,
500
+ 0.52405833333,
501
+ 0.46514166667,
502
+ 0.57273333333,
503
+ 0.52735833333,
504
+ 0.5592,
505
+ 0.51948305556,
506
+ 0.50549694444,
507
+ 0.50488861111,
508
+ 0.36735625,
509
+ 0.53613972222,
510
+ 0.50677708333,
511
+ 0.44981055556,
512
+ 0.43704833333,
513
+ 0.45431930556,
514
+ 0.56507055556,
515
+ 0.41380861111,
516
+ 0.55419958333,
517
+ 0.45757708333,
518
+ 0.45671305556,
519
+ 0.4972675,
520
+ 0.38788166667,
521
+ 0.53776583333,
522
+ 0.52779277778,
523
+ 0.53221736111,
524
+ 0.47106277778,
525
+ 0.56903944444,
526
+ 0.4783,
527
+ 0.48126111111,
528
+ 0.54720222222,
529
+ 0.474135,
530
+ 0.45746888889,
531
+ 0.51297277778,
532
+ 0.606045,
533
+ 0.41071444444,
534
+ 0.41101222222,
535
+ 0.552105,
536
+ 0.45999388889,
537
+ 0.51995777778,
538
+ 0.56436611111,
539
+ 0.50154,
540
+ 0.47195055556,
541
+ 0.43405972222,
542
+ 0.5065,
543
+ 0.51008125,
544
+ 0.52819375,
545
+ 0.48212777778,
546
+ 0.49300902778,
547
+ 0.57922916667,
548
+ 0.46563888889,
549
+ 0.4014375,
550
+ 0.49352152778,
551
+ 0.46820347222,
552
+ 0.3917,
553
+ 0.50307152778,
554
+ 0.43910972222,
555
+ 0.57312708333,
556
+ 0.56125138889,
557
+ 0.50412708333,
558
+ 0.53868194444,
559
+ 0.51587361111,
560
+ 0.60080208333,
561
+ 0.47862986111,
562
+ 0.48106152778,
563
+ 0.38717166667,
564
+ 0.526345,
565
+ 0.40869833333,
566
+ 0.4253675,
567
+ 0.5569475,
568
+ 0.46934416667,
569
+ 0.50617083333,
570
+ 0.44834,
571
+ 0.51131333333,
572
+ 0.55684916667,
573
+ 0.51484166667,
574
+ 0.56658,
575
+ 0.41325583333,
576
+ 0.54179416667,
577
+ 0.57034416667,
578
+ 0.47756916667,
579
+ 0.62718666667,
580
+ 0.5509725,
581
+ 0.5502525,
582
+ 0.47039333333,
583
+ 0.42288916667,
584
+ 0.53411083333,
585
+ 0.5683725,
586
+ 0.602335,
587
+ 0.47520916667,
588
+ 0.50628583333,
589
+ 0.521265,
590
+ 0.52259861111,
591
+ 0.48722541667,
592
+ 0.53608763889,
593
+ 0.59789305556,
594
+ 0.44855902778,
595
+ 0.53649930556,
596
+ 0.54616166667,
597
+ 0.58590708333,
598
+ 0.45782208333,
599
+ 0.4642825,
600
+ 0.49553166667,
601
+ 0.67386,
602
+ 0.50180402778,
603
+ 0.47037763889,
604
+ 0.46473833333,
605
+ 0.41795972222,
606
+ 0.47257958333,
607
+ 0.53391527778,
608
+ 0.57262361111,
609
+ 0.48405138889,
610
+ 0.4508,
611
+ 0.54903055556,
612
+ 0.42190694444,
613
+ 0.43467777778,
614
+ 0.53279027778,
615
+ 0.58740972222,
616
+ 0.56928333333,
617
+ 0.63375833333,
618
+ 0.5663125,
619
+ 0.46767638889,
620
+ 0.57531388889,
621
+ 0.45455277778,
622
+ 0.39892222222,
623
+ 0.5952875,
624
+ 0.44328333333,
625
+ 0.49716944444,
626
+ 0.49061111111,
627
+ 0.55089583333,
628
+ 0.542875,
629
+ 0.44646527778,
630
+ 0.47390277778,
631
+ 0.495,
632
+ 0.55122222222,
633
+ 0.54713888889,
634
+ 0.47925694444,
635
+ 0.645625,
636
+ 0.58602083333,
637
+ 0.54818055556,
638
+ 0.58030555556,
639
+ 0.5108125,
640
+ 0.48620138889,
641
+ 0.44344444444,
642
+ 0.62082638889,
643
+ 0.53688888889,
644
+ 0.4769375,
645
+ 0.45626388889,
646
+ 0.43636111111,
647
+ 0.48725416667,
648
+ 0.56865277778,
649
+ 0.47129722222,
650
+ 0.50325,
651
+ 0.48446527778,
652
+ 0.55102083333,
653
+ 0.58122916667,
654
+ 0.45869444444,
655
+ 0.55117361111,
656
+ 0.38622916667,
657
+ 0.49203472222,
658
+ 0.39611111111,
659
+ 0.52322222222,
660
+ 0.50911111111,
661
+ 0.545875,
662
+ 0.49933166667,
663
+ 0.51926611111,
664
+ 0.49907486111,
665
+ 0.50863486111,
666
+ 0.53831486111,
667
+ 0.53933319444,
668
+ 0.57828930556,
669
+ 0.47896819444,
670
+ 0.40125291667,
671
+ 0.504445,
672
+ 0.53565,
673
+ 0.28999666667,
674
+ 0.48051666667,
675
+ 0.44803833333,
676
+ 0.42531,
677
+ 0.54171166667,
678
+ 0.484515,
679
+ 0.46153833333,
680
+ 0.47544666667,
681
+ 0.43798,
682
+ 0.401075,
683
+ 0.407455,
684
+ 0.41547666667,
685
+ 0.54620333333,
686
+ 0.45932666667,
687
+ 0.45051930556,
688
+ 0.57091819444,
689
+ 0.46523319444,
690
+ 0.43658833333,
691
+ 0.48776138889,
692
+ 0.53602388889,
693
+ 0.51612527778,
694
+ 0.51619833333,
695
+ 0.49428416667,
696
+ 0.43790222222,
697
+ 0.44653958333,
698
+ 0.43712486111,
699
+ 0.40300513889,
700
+ 0.56234097222,
701
+ 0.474555,
702
+ 0.44655097222,
703
+ 0.54056597222,
704
+ 0.45041430556,
705
+ 0.52533972222,
706
+ 0.52445375,
707
+ 0.63305347222,
708
+ 0.48278055556,
709
+ 0.52841361111,
710
+ 0.53922430556,
711
+ 0.56528333333,
712
+ 0.44198055556,
713
+ 0.49815555556,
714
+ 0.44740277778,
715
+ 0.53225,
716
+ 0.47143611111,
717
+ 0.50535,
718
+ 0.50532222222,
719
+ 0.38877222222,
720
+ 0.45349166667,
721
+ 0.4699,
722
+ 0.527325,
723
+ 0.48013055556,
724
+ 0.45149444444,
725
+ 0.51115555556,
726
+ 0.47300555556,
727
+ 0.40672222222,
728
+ 0.54794722222,
729
+ 0.57065555556,
730
+ 0.43134444444,
731
+ 0.54095555556,
732
+ 0.46501388889,
733
+ 0.53646111111,
734
+ 0.52628611111,
735
+ 0.55696944444,
736
+ 0.33851666667,
737
+ 0.56513861111,
738
+ 0.39431041667,
739
+ 0.48249513889,
740
+ 0.53899666667,
741
+ 0.54166638889,
742
+ 0.50782888889,
743
+ 0.52590805556,
744
+ 0.45245333333,
745
+ 0.45541916667,
746
+ 0.47155583333,
747
+ 0.51281972222,
748
+ 0.44810166667,
749
+ 0.50835138889,
750
+ 0.58544388889,
751
+ 0.52371805556,
752
+ 0.44599805556,
753
+ 0.43898777778,
754
+ 0.47267722222,
755
+ 0.52452208333,
756
+ 0.61510333333,
757
+ 0.50854166667,
758
+ 0.46054833333,
759
+ 0.56622,
760
+ 0.42615,
761
+ 0.53491666667,
762
+ 0.52652833333,
763
+ 0.527335,
764
+ 0.67556333333,
765
+ 0.45109166667,
766
+ 0.59083541667,
767
+ 0.45191319444,
768
+ 0.54146805556,
769
+ 0.48338333333,
770
+ 0.53249097222,
771
+ 0.44949444444,
772
+ 0.51941736111,
773
+ 0.58977708333,
774
+ 0.50848402778,
775
+ 0.40556944444,
776
+ 0.42585305556,
777
+ 0.5207375,
778
+ 0.4586325,
779
+ 0.40217944444,
780
+ 0.56245944444,
781
+ 0.55036388889,
782
+ 0.472395,
783
+ 0.40083444444,
784
+ 0.46645652778,
785
+ 0.47231375,
786
+ 0.61049125,
787
+ 0.43026055556,
788
+ 0.49318791667,
789
+ 0.49176569444,
790
+ 0.50923013889,
791
+ 0.65010805556,
792
+ 0.60687861111,
793
+ 0.48488833333,
794
+ 0.54808833333,
795
+ 0.57673444444,
796
+ 0.52415,
797
+ 0.3968375,
798
+ 0.4255625,
799
+ 0.49525,
800
+ 0.635625,
801
+ 0.54183333333,
802
+ 0.47456666667,
803
+ 0.35498333333,
804
+ 0.53386666667,
805
+ 0.51248333333,
806
+ 0.557225,
807
+ 0.51565833333,
808
+ 0.46278333333,
809
+ 0.5115125,
810
+ 0.53826666667,
811
+ 0.54737347222,
812
+ 0.50048930556,
813
+ 0.55215569444,
814
+ 0.52576833333,
815
+ 0.45016569444,
816
+ 0.36885777778,
817
+ 0.45052347222,
818
+ 0.45691166667,
819
+ 0.47295736111,
820
+ 0.48539277778,
821
+ 0.53254333333,
822
+ 0.62901055556,
823
+ 0.524615,
824
+ 0.49281166667,
825
+ 0.48531888889,
826
+ 0.52359944444,
827
+ 0.52044388889,
828
+ 0.482585,
829
+ 0.45909666667,
830
+ 0.56092263889,
831
+ 0.51403375,
832
+ 0.56277125,
833
+ 0.53915708333,
834
+ 0.49189180556,
835
+ 0.54154763889,
836
+ 0.50087736111,
837
+ 0.44601666667,
838
+ 0.48657333333,
839
+ 0.52078888889,
840
+ 0.47333972222,
841
+ null
842
+ ],
843
+ "prints": [
844
+ [
845
+ "Last:0.47"
846
+ ],
847
+ [
848
+ "Min:0.29"
849
+ ],
850
+ [
851
+ "Max:0.68"
852
+ ],
853
+ [
854
+ "Average:0.50"
855
+ ]
856
+ ],
857
+ "last_value": 0.47,
858
+ "minimum_value": 0.29,
859
+ "maximum_value": 0.68,
860
+ "average_value": 0.5
861
+ },
862
+ {
863
+ "index_id": 5320,
864
+ "metric_id": 12877,
865
+ "metric": "used",
866
+ "metric_legend": "used",
867
+ "unit": "%",
868
+ "hidden": 0,
869
+ "min": null,
870
+ "max": null,
871
+ "virtual": 0,
872
+ "ds_data": {
873
+ "compo_id": 8,
874
+ "host_id": null,
875
+ "service_id": null,
876
+ "name": "Used",
877
+ "ds_order": 1,
878
+ "ds_hidecurve": null,
879
+ "ds_name": "used",
880
+ "ds_color_line": "#2B28D7",
881
+ "ds_color_line_mode": "0",
882
+ "ds_color_area": "#050AF9",
883
+ "ds_color_area_warn": null,
884
+ "ds_color_area_crit": null,
885
+ "ds_filled": "1",
886
+ "ds_max": null,
887
+ "ds_min": null,
888
+ "ds_minmax_int": "0",
889
+ "ds_average": "1",
890
+ "ds_last": "1",
891
+ "ds_total": "0",
892
+ "ds_tickness": 1,
893
+ "ds_transparency": "80",
894
+ "ds_invert": null,
895
+ "ds_legend": null,
896
+ "ds_jumpline": "0",
897
+ "ds_stack": null,
898
+ "default_tpl1": null,
899
+ "comment": null
900
+ },
901
+ "legend": "used",
902
+ "stack": 0,
903
+ "warn": null,
904
+ "warn_low": null,
905
+ "crit": null,
906
+ "crit_low": null,
907
+ "ds_color_area_warn": "#ff9a13",
908
+ "ds_color_area_crit": "#e00b3d",
909
+ "ds_order": 1,
910
+ "data": [
911
+ 93.53473625,
912
+ 95.4705575,
913
+ 90.78131625,
914
+ 88.229732917,
915
+ 91.46288,
916
+ 96.404586389,
917
+ 90.425950694,
918
+ 92.482070417,
919
+ 95.38929375,
920
+ 98.065868472,
921
+ 91.3271225,
922
+ 92.991402361,
923
+ 96.059254028,
924
+ 95.253403889,
925
+ 92.0200325,
926
+ 86.169484583,
927
+ 91.723414306,
928
+ 95.545441667,
929
+ 91.213633333,
930
+ 96.978266667,
931
+ 92.047108333,
932
+ 94.362,
933
+ 97.349091667,
934
+ 91.6958,
935
+ 90.930558333,
936
+ 92.126758333,
937
+ 92.515791667,
938
+ 90.98285,
939
+ 94.291941667,
940
+ 94.6313,
941
+ 93.0995,
942
+ 96.032566667,
943
+ 97.73195,
944
+ 97.437383333,
945
+ 97.234416667,
946
+ 97.020591667,
947
+ 92.502736528,
948
+ 92.181365972,
949
+ 91.755329306,
950
+ 89.611361389,
951
+ 81.009381389,
952
+ 82.697088333,
953
+ 82.949993889,
954
+ 92.676847917,
955
+ 92.367398889,
956
+ 90.054948889,
957
+ 88.724102778,
958
+ 95.362512083,
959
+ 98.273312639,
960
+ 94.797704722,
961
+ 91.9214025,
962
+ 93.706965556,
963
+ 95.219553889,
964
+ 98.321218333,
965
+ 97.808040972,
966
+ 97.677885,
967
+ 96.704646111,
968
+ 93.720406667,
969
+ 92.002689444,
970
+ 89.145115,
971
+ 96.180838889,
972
+ 98.572950556,
973
+ 91.615067778,
974
+ 92.582652222,
975
+ 96.859334444,
976
+ 90.42448,
977
+ 91.813913889,
978
+ 92.037367778,
979
+ 91.581648889,
980
+ 79.763948889,
981
+ 73.738103333,
982
+ 72.813350972,
983
+ 74.061651389,
984
+ 78.564606944,
985
+ 73.625989583,
986
+ 74.61276875,
987
+ 75.664770833,
988
+ 84.789911111,
989
+ 91.562385417,
990
+ 92.0473125,
991
+ 90.717729167,
992
+ 84.731822917,
993
+ 84.325086111,
994
+ 84.78401875,
995
+ 86.0260625,
996
+ 87.469259028,
997
+ 88.298977778,
998
+ 86.075078472,
999
+ 86.349101389,
1000
+ 88.635159028,
1001
+ 89.006238889,
1002
+ 91.320934722,
1003
+ 88.318921528,
1004
+ 77.251426528,
1005
+ 73.456744167,
1006
+ 81.2534625,
1007
+ 84.409346667,
1008
+ 85.268703333,
1009
+ 86.337475833,
1010
+ 83.730001667,
1011
+ 79.989916667,
1012
+ 86.847673333,
1013
+ 93.467304167,
1014
+ 95.524714167,
1015
+ 94.551674167,
1016
+ 87.080203333,
1017
+ 80.839834167,
1018
+ 79.757945,
1019
+ 81.624870833,
1020
+ 88.540388333,
1021
+ 96.682811667,
1022
+ 96.2668275,
1023
+ 95.1485025,
1024
+ 90.362938333,
1025
+ 88.677029167,
1026
+ 89.1434075,
1027
+ 88.386136667,
1028
+ 94.904750833,
1029
+ 97.1479475,
1030
+ 90.782644167,
1031
+ 88.3413525,
1032
+ 89.247638056,
1033
+ 92.222419444,
1034
+ 82.727468889,
1035
+ 81.888297083,
1036
+ 85.957462222,
1037
+ 89.885201806,
1038
+ 97.087708472,
1039
+ 93.182506389,
1040
+ 84.728676111,
1041
+ 83.442598056,
1042
+ 81.057695972,
1043
+ 73.105455972,
1044
+ 77.261483333,
1045
+ 86.681160278,
1046
+ 90.515781111,
1047
+ 83.858407917,
1048
+ 84.912508194,
1049
+ 89.196070833,
1050
+ 89.980515278,
1051
+ 88.662130556,
1052
+ 90.962719444,
1053
+ 90.9171,
1054
+ 97.05835,
1055
+ 97.970702778,
1056
+ 94.598463889,
1057
+ 97.041998611,
1058
+ 97.571281944,
1059
+ 90.000070833,
1060
+ 84.775991667,
1061
+ 77.098211111,
1062
+ 73.768095833,
1063
+ 87.708554167,
1064
+ 95.292305556,
1065
+ 92.661397222,
1066
+ 91.698375,
1067
+ 94.734926389,
1068
+ 85.569593056,
1069
+ 78.765402778,
1070
+ 73.1415625,
1071
+ 75.643798611,
1072
+ 79.100340278,
1073
+ 80.757395833,
1074
+ 75.441020833,
1075
+ 74.254395833,
1076
+ 75.555159722,
1077
+ 73.148548611,
1078
+ 74.245520833,
1079
+ 80.435673611,
1080
+ 78.429381944,
1081
+ 73.619902778,
1082
+ 73.574881944,
1083
+ 74.838986111,
1084
+ 76.178506944,
1085
+ 73.361840278,
1086
+ 73.252270833,
1087
+ 74.580708333,
1088
+ 77.323736111,
1089
+ 89.248868056,
1090
+ 95.394506944,
1091
+ 83.555773611,
1092
+ 73.377284722,
1093
+ 72.989409722,
1094
+ 72.345833333,
1095
+ 77.278854167,
1096
+ 77.246506944,
1097
+ 75.3070625,
1098
+ 74.816506944,
1099
+ 73.262715278,
1100
+ 78.040527778,
1101
+ 75.361666667,
1102
+ 79.701270833,
1103
+ 80.888388889,
1104
+ 77.274089722,
1105
+ 78.965599028,
1106
+ 76.581835833,
1107
+ 81.1598125,
1108
+ 82.532069722,
1109
+ 81.2063575,
1110
+ 79.699761389,
1111
+ 84.279743333,
1112
+ 82.0001075,
1113
+ 77.98224,
1114
+ 80.77859,
1115
+ 77.558431667,
1116
+ 75.035186667,
1117
+ 79.77859,
1118
+ 76.498343333,
1119
+ 75.270236667,
1120
+ 74.502018333,
1121
+ 76.987243333,
1122
+ 77.314198333,
1123
+ 73.739925,
1124
+ 76.768341667,
1125
+ 80.002403333,
1126
+ 79.50922,
1127
+ 79.793135,
1128
+ 83.32031,
1129
+ 90.690696528,
1130
+ 91.855036111,
1131
+ 95.152990556,
1132
+ 90.662471667,
1133
+ 87.878877778,
1134
+ 86.474365833,
1135
+ 93.031389722,
1136
+ 91.1510425,
1137
+ 89.524025,
1138
+ 87.79133125,
1139
+ 83.196835417,
1140
+ 86.905329028,
1141
+ 84.796714861,
1142
+ 86.477819306,
1143
+ 90.215054722,
1144
+ 90.689078611,
1145
+ 90.069447917,
1146
+ 94.064490972,
1147
+ 92.910771806,
1148
+ 90.168341389,
1149
+ 86.005012778,
1150
+ 82.007541389,
1151
+ 82.4444,
1152
+ 84.725972361,
1153
+ 81.079969444,
1154
+ 82.071788889,
1155
+ 74.344436111,
1156
+ 73.304477778,
1157
+ 73.895147222,
1158
+ 76.732205556,
1159
+ 81.682944444,
1160
+ 86.026041667,
1161
+ 87.382563889,
1162
+ 88.904291667,
1163
+ 87.770433333,
1164
+ 80.927844444,
1165
+ 77.038666667,
1166
+ 81.157086111,
1167
+ 82.575377778,
1168
+ 91.568616667,
1169
+ 96.412636111,
1170
+ 96.376172222,
1171
+ 91.875827778,
1172
+ 95.524025,
1173
+ 97.76045,
1174
+ 96.818305556,
1175
+ 92.319038889,
1176
+ 89.773883333,
1177
+ 80.555247222,
1178
+ 85.832455556,
1179
+ 77.946490833,
1180
+ 82.205994583,
1181
+ 88.74038125,
1182
+ 83.006198333,
1183
+ 78.297281111,
1184
+ 74.590896667,
1185
+ 75.900935833,
1186
+ 74.595134722,
1187
+ 78.369969722,
1188
+ 81.004014167,
1189
+ 85.035468056,
1190
+ 81.22037,
1191
+ 84.639056944,
1192
+ 84.586663333,
1193
+ 78.015843889,
1194
+ 80.189820833,
1195
+ 76.739529722,
1196
+ 78.387696111,
1197
+ 78.584917361,
1198
+ 84.938538333,
1199
+ 90.97361,
1200
+ 90.789226667,
1201
+ 90.425228333,
1202
+ 91.381495,
1203
+ 96.852533333,
1204
+ 91.220391667,
1205
+ 97.581593333,
1206
+ 97.245176667,
1207
+ 95.096153333,
1208
+ 95.391049444,
1209
+ 93.119884028,
1210
+ 81.892788889,
1211
+ 77.476779861,
1212
+ 80.188209028,
1213
+ 80.098774306,
1214
+ 86.978205556,
1215
+ 94.64235625,
1216
+ 97.311053472,
1217
+ 97.048621528,
1218
+ 90.545117639,
1219
+ 88.905369444,
1220
+ 93.880626944,
1221
+ 93.685805556,
1222
+ 96.881301944,
1223
+ 96.753013056,
1224
+ 97.337800278,
1225
+ 95.696868611,
1226
+ 97.011245139,
1227
+ 96.984615833,
1228
+ 87.825530556,
1229
+ 90.718932639,
1230
+ 92.912039028,
1231
+ 86.380014028,
1232
+ 84.796867639,
1233
+ 92.66191625,
1234
+ 91.698228056,
1235
+ 90.882975,
1236
+ 96.128683194,
1237
+ 98.014940139,
1238
+ 96.4936875,
1239
+ 93.528679167,
1240
+ 97.463633333,
1241
+ 95.379266667,
1242
+ 90.4649625,
1243
+ 89.087520833,
1244
+ 86.6875375,
1245
+ 77.421904167,
1246
+ 74.396995833,
1247
+ 73.215158333,
1248
+ 76.235308333,
1249
+ 76.3625,
1250
+ 80.6953625,
1251
+ 82.4897875,
1252
+ 86.9769875,
1253
+ 92.331467222,
1254
+ 94.825957917,
1255
+ 89.40248875,
1256
+ 89.796999167,
1257
+ 91.073693194,
1258
+ 92.296046667,
1259
+ 97.467716528,
1260
+ 90.982410139,
1261
+ 92.016604583,
1262
+ 91.068401389,
1263
+ 86.059646667,
1264
+ 81.936524444,
1265
+ 81.474296111,
1266
+ 75.121141667,
1267
+ 76.126827778,
1268
+ 78.021423333,
1269
+ 79.388627778,
1270
+ 72.908920556,
1271
+ 76.873109444,
1272
+ 88.14395875,
1273
+ 92.47338,
1274
+ 90.283409167,
1275
+ 87.865566667,
1276
+ 84.918092222,
1277
+ 78.515823889,
1278
+ 73.144546111,
1279
+ 77.194361667,
1280
+ 74.75668,
1281
+ 83.207912778,
1282
+ 81.414109306,
1283
+ null
1284
+ ],
1285
+ "prints": [
1286
+ [
1287
+ "Last:81.41"
1288
+ ],
1289
+ [
1290
+ "Average:86.52"
1291
+ ]
1292
+ ],
1293
+ "last_value": 81.41,
1294
+ "minimum_value": null,
1295
+ "maximum_value": null,
1296
+ "average_value": 86.52
1297
+ }
1298
+ ],
1299
+ "times": [
1300
+ "2023-04-22T18:00:00+02:00",
1301
+ "2023-04-22T20:00:00+02:00",
1302
+ "2023-04-22T22:00:00+02:00",
1303
+ "2023-04-23T00:00:00+02:00",
1304
+ "2023-04-23T02:00:00+02:00",
1305
+ "2023-04-23T04:00:00+02:00",
1306
+ "2023-04-23T06:00:00+02:00",
1307
+ "2023-04-23T08:00:00+02:00",
1308
+ "2023-04-23T10:00:00+02:00",
1309
+ "2023-04-23T12:00:00+02:00",
1310
+ "2023-04-23T14:00:00+02:00",
1311
+ "2023-04-23T16:00:00+02:00",
1312
+ "2023-04-23T18:00:00+02:00",
1313
+ "2023-04-23T20:00:00+02:00",
1314
+ "2023-04-23T22:00:00+02:00",
1315
+ "2023-04-24T00:00:00+02:00",
1316
+ "2023-04-24T02:00:00+02:00",
1317
+ "2023-04-24T04:00:00+02:00",
1318
+ "2023-04-24T06:00:00+02:00",
1319
+ "2023-04-24T08:00:00+02:00",
1320
+ "2023-04-24T10:00:00+02:00",
1321
+ "2023-04-24T12:00:00+02:00",
1322
+ "2023-04-24T14:00:00+02:00",
1323
+ "2023-04-24T16:00:00+02:00",
1324
+ "2023-04-24T18:00:00+02:00",
1325
+ "2023-04-24T20:00:00+02:00",
1326
+ "2023-04-24T22:00:00+02:00",
1327
+ "2023-04-25T00:00:00+02:00",
1328
+ "2023-04-25T02:00:00+02:00",
1329
+ "2023-04-25T04:00:00+02:00",
1330
+ "2023-04-25T06:00:00+02:00",
1331
+ "2023-04-25T08:00:00+02:00",
1332
+ "2023-04-25T10:00:00+02:00",
1333
+ "2023-04-25T12:00:00+02:00",
1334
+ "2023-04-25T14:00:00+02:00",
1335
+ "2023-04-25T16:00:00+02:00",
1336
+ "2023-04-25T18:00:00+02:00",
1337
+ "2023-04-25T20:00:00+02:00",
1338
+ "2023-04-25T22:00:00+02:00",
1339
+ "2023-04-26T00:00:00+02:00",
1340
+ "2023-04-26T02:00:00+02:00",
1341
+ "2023-04-26T04:00:00+02:00",
1342
+ "2023-04-26T06:00:00+02:00",
1343
+ "2023-04-26T08:00:00+02:00",
1344
+ "2023-04-26T10:00:00+02:00",
1345
+ "2023-04-26T12:00:00+02:00",
1346
+ "2023-04-26T14:00:00+02:00",
1347
+ "2023-04-26T16:00:00+02:00",
1348
+ "2023-04-26T18:00:00+02:00",
1349
+ "2023-04-26T20:00:00+02:00",
1350
+ "2023-04-26T22:00:00+02:00",
1351
+ "2023-04-27T00:00:00+02:00",
1352
+ "2023-04-27T02:00:00+02:00",
1353
+ "2023-04-27T04:00:00+02:00",
1354
+ "2023-04-27T06:00:00+02:00",
1355
+ "2023-04-27T08:00:00+02:00",
1356
+ "2023-04-27T10:00:00+02:00",
1357
+ "2023-04-27T12:00:00+02:00",
1358
+ "2023-04-27T14:00:00+02:00",
1359
+ "2023-04-27T16:00:00+02:00",
1360
+ "2023-04-27T18:00:00+02:00",
1361
+ "2023-04-27T20:00:00+02:00",
1362
+ "2023-04-27T22:00:00+02:00",
1363
+ "2023-04-28T00:00:00+02:00",
1364
+ "2023-04-28T02:00:00+02:00",
1365
+ "2023-04-28T04:00:00+02:00",
1366
+ "2023-04-28T06:00:00+02:00",
1367
+ "2023-04-28T08:00:00+02:00",
1368
+ "2023-04-28T10:00:00+02:00",
1369
+ "2023-04-28T12:00:00+02:00",
1370
+ "2023-04-28T14:00:00+02:00",
1371
+ "2023-04-28T16:00:00+02:00",
1372
+ "2023-04-28T18:00:00+02:00",
1373
+ "2023-04-28T20:00:00+02:00",
1374
+ "2023-04-28T22:00:00+02:00",
1375
+ "2023-04-29T00:00:00+02:00",
1376
+ "2023-04-29T02:00:00+02:00",
1377
+ "2023-04-29T04:00:00+02:00",
1378
+ "2023-04-29T06:00:00+02:00",
1379
+ "2023-04-29T08:00:00+02:00",
1380
+ "2023-04-29T10:00:00+02:00",
1381
+ "2023-04-29T12:00:00+02:00",
1382
+ "2023-04-29T14:00:00+02:00",
1383
+ "2023-04-29T16:00:00+02:00",
1384
+ "2023-04-29T18:00:00+02:00",
1385
+ "2023-04-29T20:00:00+02:00",
1386
+ "2023-04-29T22:00:00+02:00",
1387
+ "2023-04-30T00:00:00+02:00",
1388
+ "2023-04-30T02:00:00+02:00",
1389
+ "2023-04-30T04:00:00+02:00",
1390
+ "2023-04-30T06:00:00+02:00",
1391
+ "2023-04-30T08:00:00+02:00",
1392
+ "2023-04-30T10:00:00+02:00",
1393
+ "2023-04-30T12:00:00+02:00",
1394
+ "2023-04-30T14:00:00+02:00",
1395
+ "2023-04-30T16:00:00+02:00",
1396
+ "2023-04-30T18:00:00+02:00",
1397
+ "2023-04-30T20:00:00+02:00",
1398
+ "2023-04-30T22:00:00+02:00",
1399
+ "2023-05-01T00:00:00+02:00",
1400
+ "2023-05-01T02:00:00+02:00",
1401
+ "2023-05-01T04:00:00+02:00",
1402
+ "2023-05-01T06:00:00+02:00",
1403
+ "2023-05-01T08:00:00+02:00",
1404
+ "2023-05-01T10:00:00+02:00",
1405
+ "2023-05-01T12:00:00+02:00",
1406
+ "2023-05-01T14:00:00+02:00",
1407
+ "2023-05-01T16:00:00+02:00",
1408
+ "2023-05-01T18:00:00+02:00",
1409
+ "2023-05-01T20:00:00+02:00",
1410
+ "2023-05-01T22:00:00+02:00",
1411
+ "2023-05-02T00:00:00+02:00",
1412
+ "2023-05-02T02:00:00+02:00",
1413
+ "2023-05-02T04:00:00+02:00",
1414
+ "2023-05-02T06:00:00+02:00",
1415
+ "2023-05-02T08:00:00+02:00",
1416
+ "2023-05-02T10:00:00+02:00",
1417
+ "2023-05-02T12:00:00+02:00",
1418
+ "2023-05-02T14:00:00+02:00",
1419
+ "2023-05-02T16:00:00+02:00",
1420
+ "2023-05-02T18:00:00+02:00",
1421
+ "2023-05-02T20:00:00+02:00",
1422
+ "2023-05-02T22:00:00+02:00",
1423
+ "2023-05-03T00:00:00+02:00",
1424
+ "2023-05-03T02:00:00+02:00",
1425
+ "2023-05-03T04:00:00+02:00",
1426
+ "2023-05-03T06:00:00+02:00",
1427
+ "2023-05-03T08:00:00+02:00",
1428
+ "2023-05-03T10:00:00+02:00",
1429
+ "2023-05-03T12:00:00+02:00",
1430
+ "2023-05-03T14:00:00+02:00",
1431
+ "2023-05-03T16:00:00+02:00",
1432
+ "2023-05-03T18:00:00+02:00",
1433
+ "2023-05-03T20:00:00+02:00",
1434
+ "2023-05-03T22:00:00+02:00",
1435
+ "2023-05-04T00:00:00+02:00",
1436
+ "2023-05-04T02:00:00+02:00",
1437
+ "2023-05-04T04:00:00+02:00",
1438
+ "2023-05-04T06:00:00+02:00",
1439
+ "2023-05-04T08:00:00+02:00",
1440
+ "2023-05-04T10:00:00+02:00",
1441
+ "2023-05-04T12:00:00+02:00",
1442
+ "2023-05-04T14:00:00+02:00",
1443
+ "2023-05-04T16:00:00+02:00",
1444
+ "2023-05-04T18:00:00+02:00",
1445
+ "2023-05-04T20:00:00+02:00",
1446
+ "2023-05-04T22:00:00+02:00",
1447
+ "2023-05-05T00:00:00+02:00",
1448
+ "2023-05-05T02:00:00+02:00",
1449
+ "2023-05-05T04:00:00+02:00",
1450
+ "2023-05-05T06:00:00+02:00",
1451
+ "2023-05-05T08:00:00+02:00",
1452
+ "2023-05-05T10:00:00+02:00",
1453
+ "2023-05-05T12:00:00+02:00",
1454
+ "2023-05-05T14:00:00+02:00",
1455
+ "2023-05-05T16:00:00+02:00",
1456
+ "2023-05-05T18:00:00+02:00",
1457
+ "2023-05-05T20:00:00+02:00",
1458
+ "2023-05-05T22:00:00+02:00",
1459
+ "2023-05-06T00:00:00+02:00",
1460
+ "2023-05-06T02:00:00+02:00",
1461
+ "2023-05-06T04:00:00+02:00",
1462
+ "2023-05-06T06:00:00+02:00",
1463
+ "2023-05-06T08:00:00+02:00",
1464
+ "2023-05-06T10:00:00+02:00",
1465
+ "2023-05-06T12:00:00+02:00",
1466
+ "2023-05-06T14:00:00+02:00",
1467
+ "2023-05-06T16:00:00+02:00",
1468
+ "2023-05-06T18:00:00+02:00",
1469
+ "2023-05-06T20:00:00+02:00",
1470
+ "2023-05-06T22:00:00+02:00",
1471
+ "2023-05-07T00:00:00+02:00",
1472
+ "2023-05-07T02:00:00+02:00",
1473
+ "2023-05-07T04:00:00+02:00",
1474
+ "2023-05-07T06:00:00+02:00",
1475
+ "2023-05-07T08:00:00+02:00",
1476
+ "2023-05-07T10:00:00+02:00",
1477
+ "2023-05-07T12:00:00+02:00",
1478
+ "2023-05-07T14:00:00+02:00",
1479
+ "2023-05-07T16:00:00+02:00",
1480
+ "2023-05-07T18:00:00+02:00",
1481
+ "2023-05-07T20:00:00+02:00",
1482
+ "2023-05-07T22:00:00+02:00",
1483
+ "2023-05-08T00:00:00+02:00",
1484
+ "2023-05-08T02:00:00+02:00",
1485
+ "2023-05-08T04:00:00+02:00",
1486
+ "2023-05-08T06:00:00+02:00",
1487
+ "2023-05-08T08:00:00+02:00",
1488
+ "2023-05-08T10:00:00+02:00",
1489
+ "2023-05-08T12:00:00+02:00",
1490
+ "2023-05-08T14:00:00+02:00",
1491
+ "2023-05-08T16:00:00+02:00",
1492
+ "2023-05-08T18:00:00+02:00",
1493
+ "2023-05-08T20:00:00+02:00",
1494
+ "2023-05-08T22:00:00+02:00",
1495
+ "2023-05-09T00:00:00+02:00",
1496
+ "2023-05-09T02:00:00+02:00",
1497
+ "2023-05-09T04:00:00+02:00",
1498
+ "2023-05-09T06:00:00+02:00",
1499
+ "2023-05-09T08:00:00+02:00",
1500
+ "2023-05-09T10:00:00+02:00",
1501
+ "2023-05-09T12:00:00+02:00",
1502
+ "2023-05-09T14:00:00+02:00",
1503
+ "2023-05-09T16:00:00+02:00",
1504
+ "2023-05-09T18:00:00+02:00",
1505
+ "2023-05-09T20:00:00+02:00",
1506
+ "2023-05-09T22:00:00+02:00",
1507
+ "2023-05-10T00:00:00+02:00",
1508
+ "2023-05-10T02:00:00+02:00",
1509
+ "2023-05-10T04:00:00+02:00",
1510
+ "2023-05-10T06:00:00+02:00",
1511
+ "2023-05-10T08:00:00+02:00",
1512
+ "2023-05-10T10:00:00+02:00",
1513
+ "2023-05-10T12:00:00+02:00",
1514
+ "2023-05-10T14:00:00+02:00",
1515
+ "2023-05-10T16:00:00+02:00",
1516
+ "2023-05-10T18:00:00+02:00",
1517
+ "2023-05-10T20:00:00+02:00",
1518
+ "2023-05-10T22:00:00+02:00",
1519
+ "2023-05-11T00:00:00+02:00",
1520
+ "2023-05-11T02:00:00+02:00",
1521
+ "2023-05-11T04:00:00+02:00",
1522
+ "2023-05-11T06:00:00+02:00",
1523
+ "2023-05-11T08:00:00+02:00",
1524
+ "2023-05-11T10:00:00+02:00",
1525
+ "2023-05-11T12:00:00+02:00",
1526
+ "2023-05-11T14:00:00+02:00",
1527
+ "2023-05-11T16:00:00+02:00",
1528
+ "2023-05-11T18:00:00+02:00",
1529
+ "2023-05-11T20:00:00+02:00",
1530
+ "2023-05-11T22:00:00+02:00",
1531
+ "2023-05-12T00:00:00+02:00",
1532
+ "2023-05-12T02:00:00+02:00",
1533
+ "2023-05-12T04:00:00+02:00",
1534
+ "2023-05-12T06:00:00+02:00",
1535
+ "2023-05-12T08:00:00+02:00",
1536
+ "2023-05-12T10:00:00+02:00",
1537
+ "2023-05-12T12:00:00+02:00",
1538
+ "2023-05-12T14:00:00+02:00",
1539
+ "2023-05-12T16:00:00+02:00",
1540
+ "2023-05-12T18:00:00+02:00",
1541
+ "2023-05-12T20:00:00+02:00",
1542
+ "2023-05-12T22:00:00+02:00",
1543
+ "2023-05-13T00:00:00+02:00",
1544
+ "2023-05-13T02:00:00+02:00",
1545
+ "2023-05-13T04:00:00+02:00",
1546
+ "2023-05-13T06:00:00+02:00",
1547
+ "2023-05-13T08:00:00+02:00",
1548
+ "2023-05-13T10:00:00+02:00",
1549
+ "2023-05-13T12:00:00+02:00",
1550
+ "2023-05-13T14:00:00+02:00",
1551
+ "2023-05-13T16:00:00+02:00",
1552
+ "2023-05-13T18:00:00+02:00",
1553
+ "2023-05-13T20:00:00+02:00",
1554
+ "2023-05-13T22:00:00+02:00",
1555
+ "2023-05-14T00:00:00+02:00",
1556
+ "2023-05-14T02:00:00+02:00",
1557
+ "2023-05-14T04:00:00+02:00",
1558
+ "2023-05-14T06:00:00+02:00",
1559
+ "2023-05-14T08:00:00+02:00",
1560
+ "2023-05-14T10:00:00+02:00",
1561
+ "2023-05-14T12:00:00+02:00",
1562
+ "2023-05-14T14:00:00+02:00",
1563
+ "2023-05-14T16:00:00+02:00",
1564
+ "2023-05-14T18:00:00+02:00",
1565
+ "2023-05-14T20:00:00+02:00",
1566
+ "2023-05-14T22:00:00+02:00",
1567
+ "2023-05-15T00:00:00+02:00",
1568
+ "2023-05-15T02:00:00+02:00",
1569
+ "2023-05-15T04:00:00+02:00",
1570
+ "2023-05-15T06:00:00+02:00",
1571
+ "2023-05-15T08:00:00+02:00",
1572
+ "2023-05-15T10:00:00+02:00",
1573
+ "2023-05-15T12:00:00+02:00",
1574
+ "2023-05-15T14:00:00+02:00",
1575
+ "2023-05-15T16:00:00+02:00",
1576
+ "2023-05-15T18:00:00+02:00",
1577
+ "2023-05-15T20:00:00+02:00",
1578
+ "2023-05-15T22:00:00+02:00",
1579
+ "2023-05-16T00:00:00+02:00",
1580
+ "2023-05-16T02:00:00+02:00",
1581
+ "2023-05-16T04:00:00+02:00",
1582
+ "2023-05-16T06:00:00+02:00",
1583
+ "2023-05-16T08:00:00+02:00",
1584
+ "2023-05-16T10:00:00+02:00",
1585
+ "2023-05-16T12:00:00+02:00",
1586
+ "2023-05-16T14:00:00+02:00",
1587
+ "2023-05-16T16:00:00+02:00",
1588
+ "2023-05-16T18:00:00+02:00",
1589
+ "2023-05-16T20:00:00+02:00",
1590
+ "2023-05-16T22:00:00+02:00",
1591
+ "2023-05-17T00:00:00+02:00",
1592
+ "2023-05-17T02:00:00+02:00",
1593
+ "2023-05-17T04:00:00+02:00",
1594
+ "2023-05-17T06:00:00+02:00",
1595
+ "2023-05-17T08:00:00+02:00",
1596
+ "2023-05-17T10:00:00+02:00",
1597
+ "2023-05-17T12:00:00+02:00",
1598
+ "2023-05-17T14:00:00+02:00",
1599
+ "2023-05-17T16:00:00+02:00",
1600
+ "2023-05-17T18:00:00+02:00",
1601
+ "2023-05-17T20:00:00+02:00",
1602
+ "2023-05-17T22:00:00+02:00",
1603
+ "2023-05-18T00:00:00+02:00",
1604
+ "2023-05-18T02:00:00+02:00",
1605
+ "2023-05-18T04:00:00+02:00",
1606
+ "2023-05-18T06:00:00+02:00",
1607
+ "2023-05-18T08:00:00+02:00",
1608
+ "2023-05-18T10:00:00+02:00",
1609
+ "2023-05-18T12:00:00+02:00",
1610
+ "2023-05-18T14:00:00+02:00",
1611
+ "2023-05-18T16:00:00+02:00",
1612
+ "2023-05-18T18:00:00+02:00",
1613
+ "2023-05-18T20:00:00+02:00",
1614
+ "2023-05-18T22:00:00+02:00",
1615
+ "2023-05-19T00:00:00+02:00",
1616
+ "2023-05-19T02:00:00+02:00",
1617
+ "2023-05-19T04:00:00+02:00",
1618
+ "2023-05-19T06:00:00+02:00",
1619
+ "2023-05-19T08:00:00+02:00",
1620
+ "2023-05-19T10:00:00+02:00",
1621
+ "2023-05-19T12:00:00+02:00",
1622
+ "2023-05-19T14:00:00+02:00",
1623
+ "2023-05-19T16:00:00+02:00",
1624
+ "2023-05-19T18:00:00+02:00",
1625
+ "2023-05-19T20:00:00+02:00",
1626
+ "2023-05-19T22:00:00+02:00",
1627
+ "2023-05-20T00:00:00+02:00",
1628
+ "2023-05-20T02:00:00+02:00",
1629
+ "2023-05-20T04:00:00+02:00",
1630
+ "2023-05-20T06:00:00+02:00",
1631
+ "2023-05-20T08:00:00+02:00",
1632
+ "2023-05-20T10:00:00+02:00",
1633
+ "2023-05-20T12:00:00+02:00",
1634
+ "2023-05-20T14:00:00+02:00",
1635
+ "2023-05-20T16:00:00+02:00",
1636
+ "2023-05-20T18:00:00+02:00",
1637
+ "2023-05-20T20:00:00+02:00",
1638
+ "2023-05-20T22:00:00+02:00",
1639
+ "2023-05-21T00:00:00+02:00",
1640
+ "2023-05-21T02:00:00+02:00",
1641
+ "2023-05-21T04:00:00+02:00",
1642
+ "2023-05-21T06:00:00+02:00",
1643
+ "2023-05-21T08:00:00+02:00",
1644
+ "2023-05-21T10:00:00+02:00",
1645
+ "2023-05-21T12:00:00+02:00",
1646
+ "2023-05-21T14:00:00+02:00",
1647
+ "2023-05-21T16:00:00+02:00",
1648
+ "2023-05-21T18:00:00+02:00",
1649
+ "2023-05-21T20:00:00+02:00",
1650
+ "2023-05-21T22:00:00+02:00",
1651
+ "2023-05-22T00:00:00+02:00",
1652
+ "2023-05-22T02:00:00+02:00",
1653
+ "2023-05-22T04:00:00+02:00",
1654
+ "2023-05-22T06:00:00+02:00",
1655
+ "2023-05-22T08:00:00+02:00",
1656
+ "2023-05-22T10:00:00+02:00",
1657
+ "2023-05-22T12:00:00+02:00",
1658
+ "2023-05-22T14:00:00+02:00",
1659
+ "2023-05-22T16:00:00+02:00",
1660
+ "2023-05-22T18:00:00+02:00",
1661
+ "2023-05-22T20:00:00+02:00",
1662
+ "2023-05-22T22:00:00+02:00",
1663
+ "2023-05-23T00:00:00+02:00",
1664
+ "2023-05-23T02:00:00+02:00",
1665
+ "2023-05-23T04:00:00+02:00",
1666
+ "2023-05-23T06:00:00+02:00",
1667
+ "2023-05-23T08:00:00+02:00",
1668
+ "2023-05-23T10:00:00+02:00",
1669
+ "2023-05-23T12:00:00+02:00",
1670
+ "2023-05-23T14:00:00+02:00",
1671
+ "2023-05-23T16:00:00+02:00",
1672
+ "2023-05-23T18:00:00+02:00"
1673
+ ]
1674
+ }