@centreon/ui 24.11.14 → 24.11.21

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