@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,3050 @@
1
+ {
2
+ "global": {
3
+ "title": "memory-stats graph on srv-oracle-crm",
4
+ "start": "2023-06-06T12:43:09+02:00",
5
+ "end": "2023-06-07T12:43:09+02:00",
6
+ "vertical-label": "Memory Usage",
7
+ "base": 1024,
8
+ "width": 550,
9
+ "height": 140,
10
+ "scaled": 1,
11
+ "multiple_services": false
12
+ },
13
+ "metrics": [
14
+ {
15
+ "index_id": 5397,
16
+ "metric_id": 13071,
17
+ "metric": "mem_active",
18
+ "metric_legend": "mem_active",
19
+ "unit": "",
20
+ "hidden": 0,
21
+ "min": null,
22
+ "max": null,
23
+ "virtual": 0,
24
+ "ds_data": {
25
+ "compo_id": 25,
26
+ "host_id": null,
27
+ "service_id": null,
28
+ "name": "Memory-stats-active",
29
+ "ds_order": 1,
30
+ "ds_hidecurve": null,
31
+ "ds_name": "mem_active",
32
+ "ds_color_line": "#E84017",
33
+ "ds_color_line_mode": "0",
34
+ "ds_color_area": "#E84017",
35
+ "ds_color_area_warn": "#E84017",
36
+ "ds_color_area_crit": "#E84017",
37
+ "ds_filled": "1",
38
+ "ds_max": null,
39
+ "ds_min": null,
40
+ "ds_minmax_int": "0",
41
+ "ds_average": "1",
42
+ "ds_last": "1",
43
+ "ds_total": "0",
44
+ "ds_tickness": 1,
45
+ "ds_transparency": "10",
46
+ "ds_invert": null,
47
+ "ds_legend": null,
48
+ "ds_jumpline": "0",
49
+ "ds_stack": "1",
50
+ "default_tpl1": null,
51
+ "comment": null
52
+ },
53
+ "legend": "mem_active",
54
+ "stack": "1",
55
+ "warn": null,
56
+ "warn_low": null,
57
+ "crit": null,
58
+ "crit_low": null,
59
+ "ds_order": 1,
60
+ "data": [
61
+ 1893820035,
62
+ 1893820035,
63
+ 1893820035,
64
+ 1893820035,
65
+ 1893820035,
66
+ 1893820035,
67
+ 1893820035,
68
+ 1893820035,
69
+ 1893820035,
70
+ 1893820035,
71
+ 1893820035,
72
+ 1893820035,
73
+ 1893820035,
74
+ 1893820035,
75
+ 1893820035,
76
+ 1893820035,
77
+ 1893820035,
78
+ 2052146925.1,
79
+ 2466085903,
80
+ 2466085903,
81
+ 2466085903,
82
+ 2466085903,
83
+ 2466085903,
84
+ 2285190216.1,
85
+ 1812246071,
86
+ 1812246071,
87
+ 2063947848.5,
88
+ 2146317828,
89
+ 641190915,
90
+ 641190915,
91
+ 641190915,
92
+ 2311348047.5,
93
+ 6240789467.9,
94
+ 976416823,
95
+ 976416823,
96
+ 976416823,
97
+ 976416823,
98
+ 976416823,
99
+ 976416823,
100
+ 976416823,
101
+ 976416823,
102
+ 976416823,
103
+ 976416823,
104
+ 976416823,
105
+ 976416823,
106
+ 976416823,
107
+ 976416823,
108
+ 976416823,
109
+ 976416823,
110
+ 976416823,
111
+ 976416823,
112
+ 976416823,
113
+ 3746504548,
114
+ 4136212707,
115
+ 4136212707,
116
+ 4136212707,
117
+ 4136212707,
118
+ 4136212707,
119
+ 4136212707,
120
+ 4136212707,
121
+ 4136212707,
122
+ 4136212707,
123
+ 4136212707,
124
+ 4136212707,
125
+ 4045334676.2,
126
+ 4032549554,
127
+ 4032549554,
128
+ 4032549554,
129
+ 4032549554,
130
+ 4032549554,
131
+ 4032549554,
132
+ 4032549554,
133
+ 4032549554,
134
+ 4032549554,
135
+ 4032549554,
136
+ 4032549554,
137
+ 2843304694.2,
138
+ 2675996482,
139
+ 3290636903.5,
140
+ 3377107229,
141
+ 3377107229,
142
+ 3377107229,
143
+ 3377107229,
144
+ 1008975090.3,
145
+ 675815816,
146
+ 675815816,
147
+ 675815816,
148
+ 675815816,
149
+ 675815816,
150
+ 675815816,
151
+ 675815816,
152
+ 675815816,
153
+ 5007167276.5,
154
+ 5616520904,
155
+ 5616520904,
156
+ 5616520904,
157
+ 5616520904,
158
+ 5616520904,
159
+ 5616520904,
160
+ 5616520904,
161
+ 5616520904,
162
+ 6020516585.6,
163
+ 3004905509.1,
164
+ 2717449076.5,
165
+ 4013696655,
166
+ 4013696655,
167
+ 4013696655,
168
+ 4013696655,
169
+ 4013696655,
170
+ 4013696655,
171
+ 4013696655,
172
+ 4013696655,
173
+ 4013696655,
174
+ 4013696655,
175
+ 3518667258.2,
176
+ 3477659444.3,
177
+ 4029339877,
178
+ 4029339877,
179
+ 4029339877,
180
+ 4029339877,
181
+ 4029339877,
182
+ 4029339877,
183
+ 4029339877,
184
+ 4029339877,
185
+ 4029339877,
186
+ 4029339877,
187
+ 4029339877,
188
+ 2669352098.8,
189
+ 1176218664,
190
+ 1176218664,
191
+ 1176218664,
192
+ 1176218664,
193
+ 1176218664,
194
+ 1176218664,
195
+ 1176218664,
196
+ 1176218664,
197
+ 1176218664,
198
+ 1176218664,
199
+ 1176218664,
200
+ 1176218664,
201
+ 1176218664,
202
+ 921214667.61,
203
+ 641245245,
204
+ 641245245,
205
+ 641245245,
206
+ 641245245,
207
+ 641245245,
208
+ 641245245,
209
+ 641245245,
210
+ 641245245,
211
+ 641245245,
212
+ 641245245,
213
+ 531967203.39,
214
+ 410376143,
215
+ 410376143,
216
+ 410376143,
217
+ 410376143,
218
+ 410376143,
219
+ 410376143,
220
+ 410376143,
221
+ 410376143,
222
+ 410376143,
223
+ 364244282.82,
224
+ 312223249,
225
+ 312223249,
226
+ 312223249,
227
+ 312223249,
228
+ 312223249,
229
+ 312223249,
230
+ 312223249,
231
+ 312223249,
232
+ 191874059.65,
233
+ 56161144,
234
+ 56161144,
235
+ 56161144,
236
+ 56161144,
237
+ 56161144,
238
+ 56161144,
239
+ 56161144,
240
+ 56161144,
241
+ 56161144,
242
+ 56161144,
243
+ 56161144,
244
+ 56161144,
245
+ 56161144,
246
+ 56161144,
247
+ 56161144,
248
+ 56161144,
249
+ 56161144,
250
+ 56161144,
251
+ 56161144,
252
+ 56161144,
253
+ 56161144,
254
+ 56161144,
255
+ 56161144,
256
+ 56161144,
257
+ 56161144,
258
+ 2507006790.8,
259
+ 5270726350,
260
+ 5270726350,
261
+ 5270726350,
262
+ 5270726350,
263
+ 5357995355.7,
264
+ 6141977364.6,
265
+ 1153868339,
266
+ 1153868339,
267
+ 1153868339,
268
+ 1435336547.7,
269
+ 5174842749,
270
+ 5174842749,
271
+ 4977220904.4,
272
+ 2351673540,
273
+ 2351673540,
274
+ 2351673540,
275
+ 2439970914.3,
276
+ 3613064601,
277
+ 3613064601,
278
+ 3613064601,
279
+ 3613064601,
280
+ 3613064601,
281
+ 3613064601,
282
+ 3613064601,
283
+ 3613064601,
284
+ 3613064601,
285
+ 3613064601,
286
+ 3613064601,
287
+ 3613064601,
288
+ 3613064601,
289
+ 3613064601,
290
+ 3633811544.1,
291
+ 3738396850.5,
292
+ 1465840195,
293
+ 1465840195,
294
+ 1465840195,
295
+ 1465840195,
296
+ 1465840195,
297
+ 1174502940.9,
298
+ 1130969788,
299
+ 1130969788,
300
+ 1130969788,
301
+ 1130969788,
302
+ 1130969788,
303
+ 1130969788,
304
+ 1130969788,
305
+ 1116663662,
306
+ 1114525965,
307
+ 1114525965,
308
+ 1114525965,
309
+ 1114525965,
310
+ 1114525965,
311
+ 1114525965,
312
+ 1114525965,
313
+ 1114525965,
314
+ 1114525965,
315
+ 496913723.64,
316
+ 404626837,
317
+ 404626837,
318
+ 404626837,
319
+ 404626837,
320
+ 404626837,
321
+ 404626837,
322
+ 404626837,
323
+ 5119506062,
324
+ 5824028245,
325
+ 5824028245,
326
+ 5824028245,
327
+ 5824028245,
328
+ 5824028245,
329
+ 5824028245,
330
+ 5824028245,
331
+ 5824028245,
332
+ 5824028245,
333
+ 5824028245,
334
+ 5824028245,
335
+ 5824028245,
336
+ 5908740341.6,
337
+ 5921398471,
338
+ 5921398471,
339
+ 5921398471,
340
+ 5921398471,
341
+ 5921398471,
342
+ 5921398471,
343
+ 5921398471,
344
+ 6245118232.5,
345
+ 6005456642,
346
+ 4040032635,
347
+ 2592658957,
348
+ 2592658957,
349
+ null
350
+ ],
351
+ "prints": [["Last:2592658957.00"], ["Average:2419187156.86"]],
352
+ "last_value": 2592658957,
353
+ "minimum_value": null,
354
+ "maximum_value": null,
355
+ "average_value": 2419187156.86
356
+ },
357
+ {
358
+ "index_id": 5397,
359
+ "metric_id": 13073,
360
+ "metric": "mem_apps",
361
+ "metric_legend": "mem_apps",
362
+ "unit": "",
363
+ "hidden": 0,
364
+ "min": null,
365
+ "max": null,
366
+ "virtual": 0,
367
+ "ds_data": {
368
+ "compo_id": 26,
369
+ "host_id": null,
370
+ "service_id": null,
371
+ "name": "Memory-stats-apps",
372
+ "ds_order": 2,
373
+ "ds_hidecurve": null,
374
+ "ds_name": "mem_apps",
375
+ "ds_color_line": "#4BB846",
376
+ "ds_color_line_mode": "0",
377
+ "ds_color_area": "#4BB846",
378
+ "ds_color_area_warn": "#4BB846",
379
+ "ds_color_area_crit": "#4BB846",
380
+ "ds_filled": "1",
381
+ "ds_max": null,
382
+ "ds_min": null,
383
+ "ds_minmax_int": "0",
384
+ "ds_average": "1",
385
+ "ds_last": "1",
386
+ "ds_total": "0",
387
+ "ds_tickness": 1,
388
+ "ds_transparency": "10",
389
+ "ds_invert": null,
390
+ "ds_legend": null,
391
+ "ds_jumpline": "0",
392
+ "ds_stack": "1",
393
+ "default_tpl1": null,
394
+ "comment": null
395
+ },
396
+ "legend": "mem_apps",
397
+ "stack": "1",
398
+ "warn": null,
399
+ "warn_low": null,
400
+ "crit": null,
401
+ "crit_low": null,
402
+ "ds_order": 2,
403
+ "data": [
404
+ 98553122,
405
+ 98553122,
406
+ 98553122,
407
+ 98553122,
408
+ 98553122,
409
+ 98553122,
410
+ 98553122,
411
+ 98553122,
412
+ 98553122,
413
+ 98553122,
414
+ 98553122,
415
+ 98553122,
416
+ 98553122,
417
+ 98553122,
418
+ 98553122,
419
+ 98553122,
420
+ 98553122,
421
+ 212008185.56,
422
+ 508631665,
423
+ 508631665,
424
+ 508631665,
425
+ 508631665,
426
+ 508631665,
427
+ 404436836.74,
428
+ 132023852,
429
+ 132023852,
430
+ 751679255.8,
431
+ 2023984324.9,
432
+ 1114786080,
433
+ 1114786080,
434
+ 1114786080,
435
+ 1545614683,
436
+ 2477236437.9,
437
+ 131631027,
438
+ 131631027,
439
+ 131631027,
440
+ 131631027,
441
+ 131631027,
442
+ 131631027,
443
+ 131631027,
444
+ 131631027,
445
+ 131631027,
446
+ 131631027,
447
+ 131631027,
448
+ 131631027,
449
+ 131631027,
450
+ 131631027,
451
+ 131631027,
452
+ 131631027,
453
+ 131631027,
454
+ 131631027,
455
+ 131631027,
456
+ 1689936947,
457
+ 1909166297,
458
+ 1909166297,
459
+ 1909166297,
460
+ 1909166297,
461
+ 1909166297,
462
+ 1909166297,
463
+ 1909166297,
464
+ 1909166297,
465
+ 1909166297,
466
+ 1909166297,
467
+ 1909166297,
468
+ 1590469817.4,
469
+ 1545634191,
470
+ 1545634191,
471
+ 1545634191,
472
+ 1545634191,
473
+ 1545634191,
474
+ 1545634191,
475
+ 1545634191,
476
+ 1545634191,
477
+ 1545634191,
478
+ 1545634191,
479
+ 1545634191,
480
+ 540868656.99,
481
+ 399513810,
482
+ 805884426.34,
483
+ 863054437,
484
+ 863054437,
485
+ 863054437,
486
+ 863054437,
487
+ 561082446.51,
488
+ 518599695,
489
+ 518599695,
490
+ 518599695,
491
+ 518599695,
492
+ 518599695,
493
+ 518599695,
494
+ 518599695,
495
+ 518599695,
496
+ 1357142860,
497
+ 1475112811,
498
+ 1475112811,
499
+ 1475112811,
500
+ 1475112811,
501
+ 1475112811,
502
+ 1475112811,
503
+ 1475112811,
504
+ 1475112811,
505
+ 1844808332.4,
506
+ 1834001095.6,
507
+ 2325101374.9,
508
+ 2897236369,
509
+ 2897236369,
510
+ 2897236369,
511
+ 2897236369,
512
+ 2897236369,
513
+ 2897236369,
514
+ 2897236369,
515
+ 2897236369,
516
+ 2897236369,
517
+ 2897236369,
518
+ 2780403570.1,
519
+ 2660846348.1,
520
+ 2670413196,
521
+ 2670413196,
522
+ 2670413196,
523
+ 2670413196,
524
+ 2670413196,
525
+ 2670413196,
526
+ 2670413196,
527
+ 2670413196,
528
+ 2670413196,
529
+ 2670413196,
530
+ 2670413196,
531
+ 1430911514,
532
+ 70060017,
533
+ 70060017,
534
+ 70060017,
535
+ 70060017,
536
+ 70060017,
537
+ 70060017,
538
+ 70060017,
539
+ 70060017,
540
+ 70060017,
541
+ 70060017,
542
+ 70060017,
543
+ 70060017,
544
+ 70060017,
545
+ 69927619.973,
546
+ 69782261,
547
+ 69782261,
548
+ 69782261,
549
+ 69782261,
550
+ 69782261,
551
+ 69782261,
552
+ 69782261,
553
+ 69782261,
554
+ 69782261,
555
+ 69782261,
556
+ 57749074.973,
557
+ 44360037,
558
+ 44360037,
559
+ 44360037,
560
+ 44360037,
561
+ 44360037,
562
+ 44360037,
563
+ 44360037,
564
+ 44360037,
565
+ 44360037,
566
+ 29247892.94,
567
+ 12206539,
568
+ 12206539,
569
+ 12206539,
570
+ 12206539,
571
+ 12206539,
572
+ 12206539,
573
+ 12206539,
574
+ 12206539,
575
+ 9103798.28,
576
+ 5604963,
577
+ 5604963,
578
+ 5604963,
579
+ 5604963,
580
+ 5604963,
581
+ 5604963,
582
+ 5604963,
583
+ 5604963,
584
+ 5604963,
585
+ 5604963,
586
+ 5604963,
587
+ 5604963,
588
+ 5604963,
589
+ 5604963,
590
+ 5604963,
591
+ 5604963,
592
+ 5604963,
593
+ 5604963,
594
+ 5604963,
595
+ 5604963,
596
+ 5604963,
597
+ 5604963,
598
+ 5604963,
599
+ 5604963,
600
+ 5604963,
601
+ 1292535222.4,
602
+ 2743754451,
603
+ 2743754451,
604
+ 2743754451,
605
+ 2743754451,
606
+ 2746719079.1,
607
+ 2664862881,
608
+ 1054057710,
609
+ 1054057710,
610
+ 1054057710,
611
+ 1077191458.5,
612
+ 1384539832,
613
+ 1384539832,
614
+ 1377460654.4,
615
+ 1283408724,
616
+ 1283408724,
617
+ 1283408724,
618
+ 1427368034.9,
619
+ 3339970309,
620
+ 3339970309,
621
+ 3339970309,
622
+ 3339970309,
623
+ 3339970309,
624
+ 3339970309,
625
+ 3339970309,
626
+ 3339970309,
627
+ 3339970309,
628
+ 3339970309,
629
+ 3339970309,
630
+ 3339970309,
631
+ 3339970309,
632
+ 3339970309,
633
+ 3341758517.8,
634
+ 3277555338.2,
635
+ 2108933138,
636
+ 2108933138,
637
+ 2108933138,
638
+ 2108933138,
639
+ 2108933138,
640
+ 1548430581.6,
641
+ 1464677326,
642
+ 1464677326,
643
+ 1464677326,
644
+ 1464677326,
645
+ 1464677326,
646
+ 1464677326,
647
+ 1464677326,
648
+ 300788359.3,
649
+ 126873916,
650
+ 126873916,
651
+ 126873916,
652
+ 126873916,
653
+ 126873916,
654
+ 126873916,
655
+ 126873916,
656
+ 126873916,
657
+ 126873916,
658
+ 84415687.93,
659
+ 78071355,
660
+ 78071355,
661
+ 78071355,
662
+ 78071355,
663
+ 78071355,
664
+ 78071355,
665
+ 78071355,
666
+ 1014630991.2,
667
+ 1154576684,
668
+ 1154576684,
669
+ 1154576684,
670
+ 1154576684,
671
+ 1154576684,
672
+ 1154576684,
673
+ 1154576684,
674
+ 1154576684,
675
+ 1154576684,
676
+ 1154576684,
677
+ 1154576684,
678
+ 1154576684,
679
+ 2456071615.8,
680
+ 2650547870,
681
+ 2650547870,
682
+ 2650547870,
683
+ 2650547870,
684
+ 2650547870,
685
+ 2650547870,
686
+ 2650547870,
687
+ 2726291049,
688
+ 1847897022.8,
689
+ 477644310.52,
690
+ 158057658,
691
+ 158057658,
692
+ null
693
+ ],
694
+ "prints": [["Last:158057658.00"], ["Average:1062901083.13"]],
695
+ "last_value": 158057658,
696
+ "minimum_value": null,
697
+ "maximum_value": null,
698
+ "average_value": 1062901083.13
699
+ },
700
+ {
701
+ "index_id": 5397,
702
+ "metric_id": 13070,
703
+ "metric": "mem_mapped",
704
+ "metric_legend": "mem_mapped",
705
+ "unit": "",
706
+ "hidden": 0,
707
+ "min": null,
708
+ "max": null,
709
+ "virtual": 0,
710
+ "ds_data": {
711
+ "compo_id": 27,
712
+ "host_id": null,
713
+ "service_id": null,
714
+ "name": "Memory-stats-mapped",
715
+ "ds_order": 3,
716
+ "ds_hidecurve": null,
717
+ "ds_name": "mem_mapped",
718
+ "ds_color_line": "#39C3C6",
719
+ "ds_color_line_mode": "0",
720
+ "ds_color_area": "#39C3C6",
721
+ "ds_color_area_warn": "#39C3C6",
722
+ "ds_color_area_crit": "#39C3C6",
723
+ "ds_filled": "1",
724
+ "ds_max": null,
725
+ "ds_min": null,
726
+ "ds_minmax_int": "0",
727
+ "ds_average": "1",
728
+ "ds_last": "1",
729
+ "ds_total": "0",
730
+ "ds_tickness": 1,
731
+ "ds_transparency": "10",
732
+ "ds_invert": null,
733
+ "ds_legend": null,
734
+ "ds_jumpline": "0",
735
+ "ds_stack": "1",
736
+ "default_tpl1": null,
737
+ "comment": null
738
+ },
739
+ "legend": "mem_mapped",
740
+ "stack": "1",
741
+ "warn": null,
742
+ "warn_low": null,
743
+ "crit": null,
744
+ "crit_low": null,
745
+ "ds_order": 3,
746
+ "data": [
747
+ 26075867,
748
+ 26075867,
749
+ 26075867,
750
+ 26075867,
751
+ 26075867,
752
+ 26075867,
753
+ 26075867,
754
+ 26075867,
755
+ 26075867,
756
+ 26075867,
757
+ 26075867,
758
+ 26075867,
759
+ 26075867,
760
+ 26075867,
761
+ 26075867,
762
+ 26075867,
763
+ 26075867,
764
+ 30188011.807,
765
+ 40939041,
766
+ 40939041,
767
+ 40939041,
768
+ 40939041,
769
+ 40939041,
770
+ 40006741.287,
771
+ 37569283,
772
+ 37569283,
773
+ 44363448.583,
774
+ 50169994.46,
775
+ 18910194,
776
+ 18910194,
777
+ 18910194,
778
+ 44714711.123,
779
+ 103907909.91,
780
+ 4288797,
781
+ 4288797,
782
+ 4288797,
783
+ 4288797,
784
+ 4288797,
785
+ 4288797,
786
+ 4288797,
787
+ 4288797,
788
+ 4288797,
789
+ 4288797,
790
+ 4288797,
791
+ 4288797,
792
+ 4288797,
793
+ 4288797,
794
+ 4288797,
795
+ 4288797,
796
+ 4288797,
797
+ 4288797,
798
+ 4288797,
799
+ 134021342.32,
800
+ 152272689,
801
+ 152272689,
802
+ 152272689,
803
+ 152272689,
804
+ 152272689,
805
+ 152272689,
806
+ 152272689,
807
+ 152272689,
808
+ 152272689,
809
+ 152272689,
810
+ 152272689,
811
+ 96299329.143,
812
+ 88424750,
813
+ 88424750,
814
+ 88424750,
815
+ 88424750,
816
+ 88424750,
817
+ 88424750,
818
+ 88424750,
819
+ 88424750,
820
+ 88424750,
821
+ 88424750,
822
+ 88424750,
823
+ 50472420.157,
824
+ 45133119,
825
+ 95402405.987,
826
+ 102474511,
827
+ 102474511,
828
+ 102474511,
829
+ 102474511,
830
+ 59306851.707,
831
+ 53233835,
832
+ 53233835,
833
+ 53233835,
834
+ 53233835,
835
+ 53233835,
836
+ 53233835,
837
+ 53233835,
838
+ 53233835,
839
+ 139167265.92,
840
+ 151256760,
841
+ 151256760,
842
+ 151256760,
843
+ 151256760,
844
+ 151256760,
845
+ 151256760,
846
+ 151256760,
847
+ 151256760,
848
+ 167520608.11,
849
+ 87172020.61,
850
+ 105523104.02,
851
+ 169023088,
852
+ 169023088,
853
+ 169023088,
854
+ 169023088,
855
+ 169023088,
856
+ 169023088,
857
+ 169023088,
858
+ 169023088,
859
+ 169023088,
860
+ 169023088,
861
+ 125884231.76,
862
+ 92215363.55,
863
+ 107249346,
864
+ 107249346,
865
+ 107249346,
866
+ 107249346,
867
+ 107249346,
868
+ 107249346,
869
+ 107249346,
870
+ 107249346,
871
+ 107249346,
872
+ 107249346,
873
+ 107249346,
874
+ 71144807.53,
875
+ 31505559,
876
+ 31505559,
877
+ 31505559,
878
+ 31505559,
879
+ 31505559,
880
+ 31505559,
881
+ 31505559,
882
+ 31505559,
883
+ 31505559,
884
+ 31505559,
885
+ 31505559,
886
+ 31505559,
887
+ 31505559,
888
+ 29477861.9,
889
+ 27251649,
890
+ 27251649,
891
+ 27251649,
892
+ 27251649,
893
+ 27251649,
894
+ 27251649,
895
+ 27251649,
896
+ 27251649,
897
+ 27251649,
898
+ 27251649,
899
+ 18183509.593,
900
+ 8093608,
901
+ 8093608,
902
+ 8093608,
903
+ 8093608,
904
+ 8093608,
905
+ 8093608,
906
+ 8093608,
907
+ 8093608,
908
+ 8093608,
909
+ 4702974.42,
910
+ 879494,
911
+ 879494,
912
+ 879494,
913
+ 879494,
914
+ 879494,
915
+ 879494,
916
+ 879494,
917
+ 879494,
918
+ 486918.98,
919
+ 44228,
920
+ 44228,
921
+ 44228,
922
+ 44228,
923
+ 44228,
924
+ 44228,
925
+ 44228,
926
+ 44228,
927
+ 44228,
928
+ 44228,
929
+ 44228,
930
+ 44228,
931
+ 44228,
932
+ 44228,
933
+ 44228,
934
+ 44228,
935
+ 44228,
936
+ 44228,
937
+ 44228,
938
+ 44228,
939
+ 44228,
940
+ 44228,
941
+ 44228,
942
+ 44228,
943
+ 44228,
944
+ 68949003.82,
945
+ 146650134,
946
+ 146650134,
947
+ 146650134,
948
+ 146650134,
949
+ 147031336.99,
950
+ 152013277.07,
951
+ 150915692,
952
+ 150915692,
953
+ 150915692,
954
+ 151609863.87,
955
+ 160832433,
956
+ 160832433,
957
+ 155141940.43,
958
+ 79539682,
959
+ 79539682,
960
+ 79539682,
961
+ 81880551.23,
962
+ 112980671,
963
+ 112980671,
964
+ 112980671,
965
+ 112980671,
966
+ 112980671,
967
+ 112980671,
968
+ 112980671,
969
+ 112980671,
970
+ 112980671,
971
+ 112980671,
972
+ 112980671,
973
+ 112980671,
974
+ 112980671,
975
+ 112980671,
976
+ 115500915.72,
977
+ 146919039.18,
978
+ 119482341,
979
+ 119482341,
980
+ 119482341,
981
+ 119482341,
982
+ 119482341,
983
+ 90930015.45,
984
+ 86663576,
985
+ 86663576,
986
+ 86663576,
987
+ 86663576,
988
+ 86663576,
989
+ 86663576,
990
+ 86663576,
991
+ 52103843.03,
992
+ 46939745,
993
+ 46939745,
994
+ 46939745,
995
+ 46939745,
996
+ 46939745,
997
+ 46939745,
998
+ 46939745,
999
+ 46939745,
1000
+ 46939745,
1001
+ 30694571.69,
1002
+ 28267132,
1003
+ 28267132,
1004
+ 28267132,
1005
+ 28267132,
1006
+ 28267132,
1007
+ 28267132,
1008
+ 28267132,
1009
+ 150105765.22,
1010
+ 168311538,
1011
+ 168311538,
1012
+ 168311538,
1013
+ 168311538,
1014
+ 168311538,
1015
+ 168311538,
1016
+ 168311538,
1017
+ 168311538,
1018
+ 168311538,
1019
+ 168311538,
1020
+ 168311538,
1021
+ 168311538,
1022
+ 169874079.75,
1023
+ 170107563,
1024
+ 170107563,
1025
+ 170107563,
1026
+ 170107563,
1027
+ 170107563,
1028
+ 170107563,
1029
+ 170107563,
1030
+ 170629573.67,
1031
+ 120264551.1,
1032
+ 56314383.81,
1033
+ 48993877,
1034
+ 48993877,
1035
+ null
1036
+ ],
1037
+ "prints": [["Last:48993877.00"], ["Average:72908106.02"]],
1038
+ "last_value": 48993877,
1039
+ "minimum_value": null,
1040
+ "maximum_value": null,
1041
+ "average_value": 72908106.02
1042
+ },
1043
+ {
1044
+ "index_id": 5397,
1045
+ "metric_id": 13069,
1046
+ "metric": "mem_pages_tables",
1047
+ "metric_legend": "mem_pages_tables",
1048
+ "unit": "",
1049
+ "hidden": 0,
1050
+ "min": null,
1051
+ "max": null,
1052
+ "virtual": 0,
1053
+ "ds_data": {
1054
+ "compo_id": 28,
1055
+ "host_id": null,
1056
+ "service_id": null,
1057
+ "name": "Memory-stats-page-tables",
1058
+ "ds_order": 4,
1059
+ "ds_hidecurve": null,
1060
+ "ds_name": "mem_pages_tables",
1061
+ "ds_color_line": "#E3DB1C",
1062
+ "ds_color_line_mode": "0",
1063
+ "ds_color_area": "#E3DB1C",
1064
+ "ds_color_area_warn": "#E3DB1C",
1065
+ "ds_color_area_crit": "#E3DB1C",
1066
+ "ds_filled": "1",
1067
+ "ds_max": null,
1068
+ "ds_min": null,
1069
+ "ds_minmax_int": "0",
1070
+ "ds_average": "1",
1071
+ "ds_last": "1",
1072
+ "ds_total": "0",
1073
+ "ds_tickness": 1,
1074
+ "ds_transparency": "10",
1075
+ "ds_invert": null,
1076
+ "ds_legend": null,
1077
+ "ds_jumpline": "0",
1078
+ "ds_stack": "1",
1079
+ "default_tpl1": null,
1080
+ "comment": null
1081
+ },
1082
+ "legend": "mem_pages_tables",
1083
+ "stack": "1",
1084
+ "warn": null,
1085
+ "warn_low": null,
1086
+ "crit": null,
1087
+ "crit_low": null,
1088
+ "ds_order": 4,
1089
+ "data": [
1090
+ 74549259,
1091
+ 74549259,
1092
+ 74549259,
1093
+ 74549259,
1094
+ 74549259,
1095
+ 74549259,
1096
+ 74549259,
1097
+ 74549259,
1098
+ 74549259,
1099
+ 74549259,
1100
+ 74549259,
1101
+ 74549259,
1102
+ 74549259,
1103
+ 74549259,
1104
+ 74549259,
1105
+ 74549259,
1106
+ 74549259,
1107
+ 78623541.143,
1108
+ 89275580,
1109
+ 89275580,
1110
+ 89275580,
1111
+ 89275580,
1112
+ 89275580,
1113
+ 66932420.177,
1114
+ 8517171,
1115
+ 8517171,
1116
+ 48204303.26,
1117
+ 144020594.4,
1118
+ 123251230,
1119
+ 123251230,
1120
+ 123251230,
1121
+ 157464418.47,
1122
+ 241700900.2,
1123
+ 178924790,
1124
+ 178924790,
1125
+ 178924790,
1126
+ 178924790,
1127
+ 178924790,
1128
+ 178924790,
1129
+ 178924790,
1130
+ 178924790,
1131
+ 178924790,
1132
+ 178924790,
1133
+ 178924790,
1134
+ 178924790,
1135
+ 178924790,
1136
+ 178924790,
1137
+ 178924790,
1138
+ 178924790,
1139
+ 178924790,
1140
+ 178924790,
1141
+ 178924790,
1142
+ 311516741.45,
1143
+ 330170362,
1144
+ 330170362,
1145
+ 330170362,
1146
+ 330170362,
1147
+ 330170362,
1148
+ 330170362,
1149
+ 330170362,
1150
+ 330170362,
1151
+ 330170362,
1152
+ 330170362,
1153
+ 330170362,
1154
+ 56983891.587,
1155
+ 18550814,
1156
+ 18550814,
1157
+ 18550814,
1158
+ 18550814,
1159
+ 18550814,
1160
+ 18550814,
1161
+ 18550814,
1162
+ 18550814,
1163
+ 18550814,
1164
+ 18550814,
1165
+ 18550814,
1166
+ 13753708.903,
1167
+ 13078831,
1168
+ 93841567.95,
1169
+ 105203626,
1170
+ 105203626,
1171
+ 105203626,
1172
+ 105203626,
1173
+ 29710500.823,
1174
+ 19089795,
1175
+ 19089795,
1176
+ 19089795,
1177
+ 19089795,
1178
+ 19089795,
1179
+ 19089795,
1180
+ 19089795,
1181
+ 19089795,
1182
+ 80470299.85,
1183
+ 89105580,
1184
+ 89105580,
1185
+ 89105580,
1186
+ 89105580,
1187
+ 89105580,
1188
+ 89105580,
1189
+ 89105580,
1190
+ 89105580,
1191
+ 257340638.01,
1192
+ 238801689.93,
1193
+ 251976806.54,
1194
+ 288584148,
1195
+ 288584148,
1196
+ 288584148,
1197
+ 288584148,
1198
+ 288584148,
1199
+ 288584148,
1200
+ 288584148,
1201
+ 288584148,
1202
+ 288584148,
1203
+ 288584148,
1204
+ 186830459.77,
1205
+ 128637295.24,
1206
+ 187399676,
1207
+ 187399676,
1208
+ 187399676,
1209
+ 187399676,
1210
+ 187399676,
1211
+ 187399676,
1212
+ 187399676,
1213
+ 187399676,
1214
+ 187399676,
1215
+ 187399676,
1216
+ 187399676,
1217
+ 128653847.91,
1218
+ 64156680,
1219
+ 64156680,
1220
+ 64156680,
1221
+ 64156680,
1222
+ 64156680,
1223
+ 64156680,
1224
+ 64156680,
1225
+ 64156680,
1226
+ 64156680,
1227
+ 64156680,
1228
+ 64156680,
1229
+ 64156680,
1230
+ 64156680,
1231
+ 38517552.2,
1232
+ 10368300,
1233
+ 10368300,
1234
+ 10368300,
1235
+ 10368300,
1236
+ 10368300,
1237
+ 10368300,
1238
+ 10368300,
1239
+ 10368300,
1240
+ 10368300,
1241
+ 10368300,
1242
+ 9097165.2267,
1243
+ 7682804,
1244
+ 7682804,
1245
+ 7682804,
1246
+ 7682804,
1247
+ 7682804,
1248
+ 7682804,
1249
+ 7682804,
1250
+ 7682804,
1251
+ 7682804,
1252
+ 4386945.92,
1253
+ 670340,
1254
+ 670340,
1255
+ 670340,
1256
+ 670340,
1257
+ 670340,
1258
+ 670340,
1259
+ 670340,
1260
+ 670340,
1261
+ 573501.2,
1262
+ 464300,
1263
+ 464300,
1264
+ 464300,
1265
+ 464300,
1266
+ 464300,
1267
+ 464300,
1268
+ 464300,
1269
+ 464300,
1270
+ 464300,
1271
+ 464300,
1272
+ 464300,
1273
+ 464300,
1274
+ 464300,
1275
+ 464300,
1276
+ 464300,
1277
+ 464300,
1278
+ 464300,
1279
+ 464300,
1280
+ 464300,
1281
+ 464300,
1282
+ 464300,
1283
+ 464300,
1284
+ 464300,
1285
+ 464300,
1286
+ 464300,
1287
+ 105221194.23,
1288
+ 223351309,
1289
+ 223351309,
1290
+ 223351309,
1291
+ 223351309,
1292
+ 231537164.72,
1293
+ 337387099.68,
1294
+ 298792029,
1295
+ 298792029,
1296
+ 298792029,
1297
+ 298809162.27,
1298
+ 299036790,
1299
+ 299036790,
1300
+ 296149074.19,
1301
+ 257783707,
1302
+ 257783707,
1303
+ 257783707,
1304
+ 262884434.38,
1305
+ 330651241,
1306
+ 330651241,
1307
+ 330651241,
1308
+ 330651241,
1309
+ 330651241,
1310
+ 330651241,
1311
+ 330651241,
1312
+ 330651241,
1313
+ 330651241,
1314
+ 330651241,
1315
+ 330651241,
1316
+ 330651241,
1317
+ 330651241,
1318
+ 330651241,
1319
+ 331120621.73,
1320
+ 315063592.89,
1321
+ 18884007,
1322
+ 18884007,
1323
+ 18884007,
1324
+ 18884007,
1325
+ 18884007,
1326
+ 3107364.36,
1327
+ 749935,
1328
+ 749935,
1329
+ 749935,
1330
+ 749935,
1331
+ 749935,
1332
+ 749935,
1333
+ 749935,
1334
+ 251633.8,
1335
+ 177175,
1336
+ 177175,
1337
+ 177175,
1338
+ 177175,
1339
+ 177175,
1340
+ 177175,
1341
+ 177175,
1342
+ 177175,
1343
+ 177175,
1344
+ 47990.44,
1345
+ 28687,
1346
+ 28687,
1347
+ 28687,
1348
+ 28687,
1349
+ 28687,
1350
+ 28687,
1351
+ 28687,
1352
+ 114925814.68,
1353
+ 132094351,
1354
+ 132094351,
1355
+ 132094351,
1356
+ 132094351,
1357
+ 132094351,
1358
+ 132094351,
1359
+ 132094351,
1360
+ 132094351,
1361
+ 132094351,
1362
+ 132094351,
1363
+ 132094351,
1364
+ 132094351,
1365
+ 253196701.48,
1366
+ 271292455,
1367
+ 271292455,
1368
+ 271292455,
1369
+ 271292455,
1370
+ 271292455,
1371
+ 271292455,
1372
+ 271292455,
1373
+ 285387781.79,
1374
+ 253248736.66,
1375
+ 186446431.82,
1376
+ 172196696,
1377
+ 172196696,
1378
+ null
1379
+ ],
1380
+ "prints": [["Last:172196696.00"], ["Average:118644866.56"]],
1381
+ "last_value": 172196696,
1382
+ "minimum_value": null,
1383
+ "maximum_value": null,
1384
+ "average_value": 118644866.56
1385
+ },
1386
+ {
1387
+ "index_id": 5397,
1388
+ "metric_id": 13072,
1389
+ "metric": "mem_inactive",
1390
+ "metric_legend": "mem_inactive",
1391
+ "unit": "",
1392
+ "hidden": 0,
1393
+ "min": null,
1394
+ "max": null,
1395
+ "virtual": 0,
1396
+ "ds_data": {
1397
+ "compo_id": 29,
1398
+ "host_id": null,
1399
+ "service_id": null,
1400
+ "name": "Memory-stats-inactive",
1401
+ "ds_order": 5,
1402
+ "ds_hidecurve": null,
1403
+ "ds_name": "mem_inactive",
1404
+ "ds_color_line": "#91876E",
1405
+ "ds_color_line_mode": "0",
1406
+ "ds_color_area": "#91876E",
1407
+ "ds_color_area_warn": "#91876E",
1408
+ "ds_color_area_crit": "#91876E",
1409
+ "ds_filled": "1",
1410
+ "ds_max": null,
1411
+ "ds_min": null,
1412
+ "ds_minmax_int": "0",
1413
+ "ds_average": "1",
1414
+ "ds_last": "1",
1415
+ "ds_total": "0",
1416
+ "ds_tickness": 1,
1417
+ "ds_transparency": "10",
1418
+ "ds_invert": null,
1419
+ "ds_legend": null,
1420
+ "ds_jumpline": "0",
1421
+ "ds_stack": "1",
1422
+ "default_tpl1": null,
1423
+ "comment": null
1424
+ },
1425
+ "legend": "mem_inactive",
1426
+ "stack": "1",
1427
+ "warn": null,
1428
+ "warn_low": null,
1429
+ "crit": null,
1430
+ "crit_low": null,
1431
+ "ds_order": 5,
1432
+ "data": [
1433
+ 78174332,
1434
+ 78174332,
1435
+ 78174332,
1436
+ 78174332,
1437
+ 78174332,
1438
+ 78174332,
1439
+ 78174332,
1440
+ 78174332,
1441
+ 78174332,
1442
+ 78174332,
1443
+ 78174332,
1444
+ 78174332,
1445
+ 78174332,
1446
+ 78174332,
1447
+ 78174332,
1448
+ 78174332,
1449
+ 78174332,
1450
+ 84397956.413,
1451
+ 100669360,
1452
+ 100669360,
1453
+ 100669360,
1454
+ 100669360,
1455
+ 100669360,
1456
+ 85037735.11,
1457
+ 44169511,
1458
+ 44169511,
1459
+ 138186268.11,
1460
+ 334429102.58,
1461
+ 204856540,
1462
+ 204856540,
1463
+ 204856540,
1464
+ 266905172.87,
1465
+ 417538119.81,
1466
+ 277947135,
1467
+ 277947135,
1468
+ 277947135,
1469
+ 277947135,
1470
+ 277947135,
1471
+ 277947135,
1472
+ 277947135,
1473
+ 277947135,
1474
+ 277947135,
1475
+ 277947135,
1476
+ 277947135,
1477
+ 277947135,
1478
+ 277947135,
1479
+ 277947135,
1480
+ 277947135,
1481
+ 277947135,
1482
+ 277947135,
1483
+ 277947135,
1484
+ 277947135,
1485
+ 456831211.17,
1486
+ 481997412,
1487
+ 481997412,
1488
+ 481997412,
1489
+ 481997412,
1490
+ 481997412,
1491
+ 481997412,
1492
+ 481997412,
1493
+ 481997412,
1494
+ 481997412,
1495
+ 481997412,
1496
+ 481997412,
1497
+ 121519411.11,
1498
+ 70805776,
1499
+ 70805776,
1500
+ 70805776,
1501
+ 70805776,
1502
+ 70805776,
1503
+ 70805776,
1504
+ 70805776,
1505
+ 70805776,
1506
+ 70805776,
1507
+ 70805776,
1508
+ 70805776,
1509
+ 14874547.867,
1510
+ 7005896,
1511
+ 97493389.33,
1512
+ 110223569,
1513
+ 110223569,
1514
+ 110223569,
1515
+ 110223569,
1516
+ 82766160.353,
1517
+ 78903331,
1518
+ 78903331,
1519
+ 78903331,
1520
+ 78903331,
1521
+ 78903331,
1522
+ 78903331,
1523
+ 78903331,
1524
+ 78903331,
1525
+ 361860746.73,
1526
+ 401668444,
1527
+ 401668444,
1528
+ 401668444,
1529
+ 401668444,
1530
+ 401668444,
1531
+ 401668444,
1532
+ 401668444,
1533
+ 401668444,
1534
+ 443765650.34,
1535
+ 339668456.03,
1536
+ 346882883.6,
1537
+ 412521374,
1538
+ 412521374,
1539
+ 412521374,
1540
+ 412521374,
1541
+ 412521374,
1542
+ 412521374,
1543
+ 412521374,
1544
+ 412521374,
1545
+ 412521374,
1546
+ 412521374,
1547
+ 284942314.77,
1548
+ 265374316.08,
1549
+ 397672966,
1550
+ 397672966,
1551
+ 397672966,
1552
+ 397672966,
1553
+ 397672966,
1554
+ 397672966,
1555
+ 397672966,
1556
+ 397672966,
1557
+ 397672966,
1558
+ 397672966,
1559
+ 397672966,
1560
+ 238462035.07,
1561
+ 63664020,
1562
+ 63664020,
1563
+ 63664020,
1564
+ 63664020,
1565
+ 63664020,
1566
+ 63664020,
1567
+ 63664020,
1568
+ 63664020,
1569
+ 63664020,
1570
+ 63664020,
1571
+ 63664020,
1572
+ 63664020,
1573
+ 63664020,
1574
+ 40019224.54,
1575
+ 14059554,
1576
+ 14059554,
1577
+ 14059554,
1578
+ 14059554,
1579
+ 14059554,
1580
+ 14059554,
1581
+ 14059554,
1582
+ 14059554,
1583
+ 14059554,
1584
+ 14059554,
1585
+ 9025003.1667,
1586
+ 3423179,
1587
+ 3423179,
1588
+ 3423179,
1589
+ 3423179,
1590
+ 3423179,
1591
+ 3423179,
1592
+ 3423179,
1593
+ 3423179,
1594
+ 3423179,
1595
+ 2992653.83,
1596
+ 2507168,
1597
+ 2507168,
1598
+ 2507168,
1599
+ 2507168,
1600
+ 2507168,
1601
+ 2507168,
1602
+ 2507168,
1603
+ 2507168,
1604
+ 2373775.89,
1605
+ 2223355,
1606
+ 2223355,
1607
+ 2223355,
1608
+ 2223355,
1609
+ 2223355,
1610
+ 2223355,
1611
+ 2223355,
1612
+ 2223355,
1613
+ 2223355,
1614
+ 2223355,
1615
+ 2223355,
1616
+ 2223355,
1617
+ 2223355,
1618
+ 2223355,
1619
+ 2223355,
1620
+ 2223355,
1621
+ 2223355,
1622
+ 2223355,
1623
+ 2223355,
1624
+ 2223355,
1625
+ 2223355,
1626
+ 2223355,
1627
+ 2223355,
1628
+ 2223355,
1629
+ 2223355,
1630
+ 208213620.2,
1631
+ 440500515,
1632
+ 440500515,
1633
+ 440500515,
1634
+ 440500515,
1635
+ 442135076.11,
1636
+ 435862503.86,
1637
+ 64010186,
1638
+ 64010186,
1639
+ 64010186,
1640
+ 85934393.62,
1641
+ 377213152,
1642
+ 377213152,
1643
+ 356856826.5,
1644
+ 86408502,
1645
+ 86408502,
1646
+ 86408502,
1647
+ 103265039.74,
1648
+ 327216184,
1649
+ 327216184,
1650
+ 327216184,
1651
+ 327216184,
1652
+ 327216184,
1653
+ 327216184,
1654
+ 327216184,
1655
+ 327216184,
1656
+ 327216184,
1657
+ 327216184,
1658
+ 327216184,
1659
+ 327216184,
1660
+ 327216184,
1661
+ 327216184,
1662
+ 336353686.99,
1663
+ 457049389.5,
1664
+ 447715491,
1665
+ 447715491,
1666
+ 447715491,
1667
+ 447715491,
1668
+ 447715491,
1669
+ 359026791.42,
1670
+ 345774457,
1671
+ 345774457,
1672
+ 345774457,
1673
+ 345774457,
1674
+ 345774457,
1675
+ 345774457,
1676
+ 345774457,
1677
+ 128463407.08,
1678
+ 95991641,
1679
+ 95991641,
1680
+ 95991641,
1681
+ 95991641,
1682
+ 95991641,
1683
+ 95991641,
1684
+ 95991641,
1685
+ 95991641,
1686
+ 95991641,
1687
+ 86254514,
1688
+ 84799541,
1689
+ 84799541,
1690
+ 84799541,
1691
+ 84799541,
1692
+ 84799541,
1693
+ 84799541,
1694
+ 84799541,
1695
+ 117187388.57,
1696
+ 122026952,
1697
+ 122026952,
1698
+ 122026952,
1699
+ 122026952,
1700
+ 122026952,
1701
+ 122026952,
1702
+ 122026952,
1703
+ 122026952,
1704
+ 122026952,
1705
+ 122026952,
1706
+ 122026952,
1707
+ 122026952,
1708
+ 196747423.13,
1709
+ 207912551,
1710
+ 207912551,
1711
+ 207912551,
1712
+ 207912551,
1713
+ 207912551,
1714
+ 207912551,
1715
+ 207912551,
1716
+ 326892127.45,
1717
+ 316977681.63,
1718
+ 105944222.97,
1719
+ 51188466,
1720
+ 51188466,
1721
+ null
1722
+ ],
1723
+ "prints": [["Last:51188466.00"], ["Average:183852943.55"]],
1724
+ "last_value": 51188466,
1725
+ "minimum_value": null,
1726
+ "maximum_value": null,
1727
+ "average_value": 183852943.55
1728
+ },
1729
+ {
1730
+ "index_id": 5397,
1731
+ "metric_id": 13067,
1732
+ "metric": "mem_buffer",
1733
+ "metric_legend": "mem_buffer",
1734
+ "unit": "",
1735
+ "hidden": 0,
1736
+ "min": null,
1737
+ "max": null,
1738
+ "virtual": 0,
1739
+ "ds_data": {
1740
+ "compo_id": 30,
1741
+ "host_id": null,
1742
+ "service_id": null,
1743
+ "name": "Memory-stats-buffer",
1744
+ "ds_order": 6,
1745
+ "ds_hidecurve": null,
1746
+ "ds_name": "mem_buffer",
1747
+ "ds_color_line": "#1209F5",
1748
+ "ds_color_line_mode": "0",
1749
+ "ds_color_area": "#1209F5",
1750
+ "ds_color_area_warn": "#1209F5",
1751
+ "ds_color_area_crit": "#1209F5",
1752
+ "ds_filled": "1",
1753
+ "ds_max": null,
1754
+ "ds_min": null,
1755
+ "ds_minmax_int": "0",
1756
+ "ds_average": "1",
1757
+ "ds_last": "1",
1758
+ "ds_total": "0",
1759
+ "ds_tickness": 1,
1760
+ "ds_transparency": "10",
1761
+ "ds_invert": null,
1762
+ "ds_legend": null,
1763
+ "ds_jumpline": "0",
1764
+ "ds_stack": "1",
1765
+ "default_tpl1": null,
1766
+ "comment": null
1767
+ },
1768
+ "legend": "mem_buffer",
1769
+ "stack": "1",
1770
+ "warn": null,
1771
+ "warn_low": null,
1772
+ "crit": null,
1773
+ "crit_low": null,
1774
+ "ds_order": 6,
1775
+ "data": [
1776
+ 37552729,
1777
+ 37552729,
1778
+ 37552729,
1779
+ 37552729,
1780
+ 37552729,
1781
+ 37552729,
1782
+ 37552729,
1783
+ 37552729,
1784
+ 37552729,
1785
+ 37552729,
1786
+ 37552729,
1787
+ 37552729,
1788
+ 37552729,
1789
+ 37552729,
1790
+ 37552729,
1791
+ 37552729,
1792
+ 37552729,
1793
+ 191708687.1,
1794
+ 594742939,
1795
+ 594742939,
1796
+ 594742939,
1797
+ 594742939,
1798
+ 594742939,
1799
+ 540393727.81,
1800
+ 398300007,
1801
+ 398300007,
1802
+ 480586455.45,
1803
+ 625139901.46,
1804
+ 440608844,
1805
+ 440608844,
1806
+ 440608844,
1807
+ 467841282.06,
1808
+ 537710601.72,
1809
+ 521707935,
1810
+ 521707935,
1811
+ 521707935,
1812
+ 521707935,
1813
+ 521707935,
1814
+ 521707935,
1815
+ 521707935,
1816
+ 521707935,
1817
+ 521707935,
1818
+ 521707935,
1819
+ 521707935,
1820
+ 521707935,
1821
+ 521707935,
1822
+ 521707935,
1823
+ 521707935,
1824
+ 521707935,
1825
+ 521707935,
1826
+ 521707935,
1827
+ 521707935,
1828
+ 696259169.45,
1829
+ 720815807,
1830
+ 720815807,
1831
+ 720815807,
1832
+ 720815807,
1833
+ 720815807,
1834
+ 720815807,
1835
+ 720815807,
1836
+ 720815807,
1837
+ 720815807,
1838
+ 720815807,
1839
+ 720815807,
1840
+ 113953070.44,
1841
+ 28576944,
1842
+ 28576944,
1843
+ 28576944,
1844
+ 28576944,
1845
+ 28576944,
1846
+ 28576944,
1847
+ 28576944,
1848
+ 28576944,
1849
+ 28576944,
1850
+ 28576944,
1851
+ 28576944,
1852
+ 16222688.197,
1853
+ 14484637,
1854
+ 236373711.35,
1855
+ 267590045,
1856
+ 267590045,
1857
+ 267590045,
1858
+ 267590045,
1859
+ 195705498.99,
1860
+ 185592464,
1861
+ 185592464,
1862
+ 185592464,
1863
+ 185592464,
1864
+ 185592464,
1865
+ 185592464,
1866
+ 185592464,
1867
+ 185592464,
1868
+ 650575197.22,
1869
+ 715991019,
1870
+ 715991019,
1871
+ 715991019,
1872
+ 715991019,
1873
+ 715991019,
1874
+ 715991019,
1875
+ 715991019,
1876
+ 715991019,
1877
+ 838061375.8,
1878
+ 281973265.07,
1879
+ 328841897.77,
1880
+ 681039689,
1881
+ 681039689,
1882
+ 681039689,
1883
+ 681039689,
1884
+ 681039689,
1885
+ 681039689,
1886
+ 681039689,
1887
+ 681039689,
1888
+ 681039689,
1889
+ 681039689,
1890
+ 445778518.09,
1891
+ 419835812,
1892
+ 674934492,
1893
+ 674934492,
1894
+ 674934492,
1895
+ 674934492,
1896
+ 674934492,
1897
+ 674934492,
1898
+ 674934492,
1899
+ 674934492,
1900
+ 674934492,
1901
+ 674934492,
1902
+ 674934492,
1903
+ 424722024.73,
1904
+ 150013232,
1905
+ 150013232,
1906
+ 150013232,
1907
+ 150013232,
1908
+ 150013232,
1909
+ 150013232,
1910
+ 150013232,
1911
+ 150013232,
1912
+ 150013232,
1913
+ 150013232,
1914
+ 150013232,
1915
+ 150013232,
1916
+ 150013232,
1917
+ 145144937.14,
1918
+ 139800026,
1919
+ 139800026,
1920
+ 139800026,
1921
+ 139800026,
1922
+ 139800026,
1923
+ 139800026,
1924
+ 139800026,
1925
+ 139800026,
1926
+ 139800026,
1927
+ 139800026,
1928
+ 137569339.95,
1929
+ 135087309,
1930
+ 135087309,
1931
+ 135087309,
1932
+ 135087309,
1933
+ 135087309,
1934
+ 135087309,
1935
+ 135087309,
1936
+ 135087309,
1937
+ 135087309,
1938
+ 122012400.62,
1939
+ 107268355,
1940
+ 107268355,
1941
+ 107268355,
1942
+ 107268355,
1943
+ 107268355,
1944
+ 107268355,
1945
+ 107268355,
1946
+ 107268355,
1947
+ 98034856.26,
1948
+ 87622613,
1949
+ 87622613,
1950
+ 87622613,
1951
+ 87622613,
1952
+ 87622613,
1953
+ 87622613,
1954
+ 87622613,
1955
+ 87622613,
1956
+ 87622613,
1957
+ 87622613,
1958
+ 87622613,
1959
+ 87622613,
1960
+ 87622613,
1961
+ 87622613,
1962
+ 87622613,
1963
+ 87622613,
1964
+ 87622613,
1965
+ 87622613,
1966
+ 87622613,
1967
+ 87622613,
1968
+ 87622613,
1969
+ 87622613,
1970
+ 87622613,
1971
+ 87622613,
1972
+ 87622613,
1973
+ 404735924.31,
1974
+ 762331786,
1975
+ 762331786,
1976
+ 762331786,
1977
+ 762331786,
1978
+ 766513542.81,
1979
+ 809009098.93,
1980
+ 635470168,
1981
+ 635470168,
1982
+ 635470168,
1983
+ 638174903.11,
1984
+ 674109241,
1985
+ 674109241,
1986
+ 647779351.33,
1987
+ 297967960,
1988
+ 297967960,
1989
+ 297967960,
1990
+ 312033490.01,
1991
+ 498904103,
1992
+ 498904103,
1993
+ 498904103,
1994
+ 498904103,
1995
+ 498904103,
1996
+ 498904103,
1997
+ 498904103,
1998
+ 498904103,
1999
+ 498904103,
2000
+ 498904103,
2001
+ 498904103,
2002
+ 498904103,
2003
+ 498904103,
2004
+ 498904103,
2005
+ 513191502.42,
2006
+ 659509551.15,
2007
+ 81577554,
2008
+ 81577554,
2009
+ 81577554,
2010
+ 81577554,
2011
+ 81577554,
2012
+ 45720144.69,
2013
+ 40362141,
2014
+ 40362141,
2015
+ 40362141,
2016
+ 40362141,
2017
+ 40362141,
2018
+ 40362141,
2019
+ 40362141,
2020
+ 19195506.45,
2021
+ 16032676,
2022
+ 16032676,
2023
+ 16032676,
2024
+ 16032676,
2025
+ 16032676,
2026
+ 16032676,
2027
+ 16032676,
2028
+ 16032676,
2029
+ 16032676,
2030
+ 5517032.98,
2031
+ 3945730,
2032
+ 3945730,
2033
+ 3945730,
2034
+ 3945730,
2035
+ 3945730,
2036
+ 3945730,
2037
+ 3945730,
2038
+ 462388009.63,
2039
+ 530890879,
2040
+ 530890879,
2041
+ 530890879,
2042
+ 530890879,
2043
+ 530890879,
2044
+ 530890879,
2045
+ 530890879,
2046
+ 530890879,
2047
+ 530890879,
2048
+ 530890879,
2049
+ 530890879,
2050
+ 530890879,
2051
+ 617384949.64,
2052
+ 630309351,
2053
+ 630309351,
2054
+ 630309351,
2055
+ 630309351,
2056
+ 630309351,
2057
+ 630309351,
2058
+ 630309351,
2059
+ 638703189.57,
2060
+ 584936985.36,
2061
+ 354641768.23,
2062
+ 175353479,
2063
+ 175353479,
2064
+ null
2065
+ ],
2066
+ "prints": [["Last:175353479.00"], ["Average:332234252.08"]],
2067
+ "last_value": 175353479,
2068
+ "minimum_value": null,
2069
+ "maximum_value": null,
2070
+ "average_value": 332234252.08
2071
+ },
2072
+ {
2073
+ "index_id": 5397,
2074
+ "metric_id": 13068,
2075
+ "metric": "mem_cache",
2076
+ "metric_legend": "mem_cache",
2077
+ "unit": "",
2078
+ "hidden": 0,
2079
+ "min": null,
2080
+ "max": null,
2081
+ "virtual": 0,
2082
+ "ds_data": {
2083
+ "compo_id": 31,
2084
+ "host_id": null,
2085
+ "service_id": null,
2086
+ "name": "Memory-stats-cache",
2087
+ "ds_order": 7,
2088
+ "ds_hidecurve": null,
2089
+ "ds_name": "mem_cache",
2090
+ "ds_color_line": "#C738B3",
2091
+ "ds_color_line_mode": "0",
2092
+ "ds_color_area": "#C738B3",
2093
+ "ds_color_area_warn": "#C738B3",
2094
+ "ds_color_area_crit": "#C738B3",
2095
+ "ds_filled": "1",
2096
+ "ds_max": null,
2097
+ "ds_min": null,
2098
+ "ds_minmax_int": "0",
2099
+ "ds_average": "1",
2100
+ "ds_last": "1",
2101
+ "ds_total": "0",
2102
+ "ds_tickness": 1,
2103
+ "ds_transparency": "10",
2104
+ "ds_invert": null,
2105
+ "ds_legend": null,
2106
+ "ds_jumpline": "0",
2107
+ "ds_stack": "1",
2108
+ "default_tpl1": null,
2109
+ "comment": null
2110
+ },
2111
+ "legend": "mem_cache",
2112
+ "stack": "1",
2113
+ "warn": null,
2114
+ "warn_low": null,
2115
+ "crit": null,
2116
+ "crit_low": null,
2117
+ "ds_order": 7,
2118
+ "data": [
2119
+ 2366932380,
2120
+ 2366932380,
2121
+ 2366932380,
2122
+ 2366932380,
2123
+ 2366932380,
2124
+ 2366932380,
2125
+ 2366932380,
2126
+ 2366932380,
2127
+ 2366932380,
2128
+ 2366932380,
2129
+ 2366932380,
2130
+ 2366932380,
2131
+ 2366932380,
2132
+ 2366932380,
2133
+ 2366932380,
2134
+ 2366932380,
2135
+ 2366932380,
2136
+ 2525106295.6,
2137
+ 2938645328,
2138
+ 2938645328,
2139
+ 2938645328,
2140
+ 2938645328,
2141
+ 2938645328,
2142
+ 2351768818.4,
2143
+ 817404932,
2144
+ 817404932,
2145
+ 1645987946.6,
2146
+ 3207589652.9,
2147
+ 1626643617,
2148
+ 1626643617,
2149
+ 1626643617,
2150
+ 2160810351.6,
2151
+ 3323027980.6,
2152
+ 500774058,
2153
+ 500774058,
2154
+ 500774058,
2155
+ 500774058,
2156
+ 500774058,
2157
+ 500774058,
2158
+ 500774058,
2159
+ 500774058,
2160
+ 500774058,
2161
+ 500774058,
2162
+ 500774058,
2163
+ 500774058,
2164
+ 500774058,
2165
+ 500774058,
2166
+ 500774058,
2167
+ 500774058,
2168
+ 500774058,
2169
+ 500774058,
2170
+ 500774058,
2171
+ 2333026907.7,
2172
+ 2590796320,
2173
+ 2590796320,
2174
+ 2590796320,
2175
+ 2590796320,
2176
+ 2590796320,
2177
+ 2590796320,
2178
+ 2590796320,
2179
+ 2590796320,
2180
+ 2590796320,
2181
+ 2590796320,
2182
+ 2590796320,
2183
+ 1910659820.6,
2184
+ 1814975218,
2185
+ 1814975218,
2186
+ 1814975218,
2187
+ 1814975218,
2188
+ 1814975218,
2189
+ 1814975218,
2190
+ 1814975218,
2191
+ 1814975218,
2192
+ 1814975218,
2193
+ 1814975218,
2194
+ 1814975218,
2195
+ 1222898572,
2196
+ 1139602618,
2197
+ 1443507739.1,
2198
+ 1486262452,
2199
+ 1486262452,
2200
+ 1486262452,
2201
+ 1486262452,
2202
+ 1479102156.9,
2203
+ 1478094815,
2204
+ 1478094815,
2205
+ 1478094815,
2206
+ 1478094815,
2207
+ 1478094815,
2208
+ 1478094815,
2209
+ 1478094815,
2210
+ 1478094815,
2211
+ 3660937859.7,
2212
+ 3968029847,
2213
+ 3968029847,
2214
+ 3968029847,
2215
+ 3968029847,
2216
+ 3968029847,
2217
+ 3968029847,
2218
+ 3968029847,
2219
+ 3968029847,
2220
+ 4183448669.9,
2221
+ 2332788260.5,
2222
+ 2874868720.4,
2223
+ 4456800060,
2224
+ 4456800060,
2225
+ 4456800060,
2226
+ 4456800060,
2227
+ 4456800060,
2228
+ 4456800060,
2229
+ 4456800060,
2230
+ 4456800060,
2231
+ 4456800060,
2232
+ 4456800060,
2233
+ 3221762121.1,
2234
+ 2425597488.2,
2235
+ 3040187834,
2236
+ 3040187834,
2237
+ 3040187834,
2238
+ 3040187834,
2239
+ 3040187834,
2240
+ 3040187834,
2241
+ 3040187834,
2242
+ 3040187834,
2243
+ 3040187834,
2244
+ 3040187834,
2245
+ 3040187834,
2246
+ 2657943826.1,
2247
+ 2238277328,
2248
+ 2238277328,
2249
+ 2238277328,
2250
+ 2238277328,
2251
+ 2238277328,
2252
+ 2238277328,
2253
+ 2238277328,
2254
+ 2238277328,
2255
+ 2238277328,
2256
+ 2238277328,
2257
+ 2238277328,
2258
+ 2238277328,
2259
+ 2238277328,
2260
+ 1398491748,
2261
+ 476489398,
2262
+ 476489398,
2263
+ 476489398,
2264
+ 476489398,
2265
+ 476489398,
2266
+ 476489398,
2267
+ 476489398,
2268
+ 476489398,
2269
+ 476489398,
2270
+ 476489398,
2271
+ 286775000.57,
2272
+ 75684333,
2273
+ 75684333,
2274
+ 75684333,
2275
+ 75684333,
2276
+ 75684333,
2277
+ 75684333,
2278
+ 75684333,
2279
+ 75684333,
2280
+ 75684333,
2281
+ 72587698.52,
2282
+ 69095749,
2283
+ 69095749,
2284
+ 69095749,
2285
+ 69095749,
2286
+ 69095749,
2287
+ 69095749,
2288
+ 69095749,
2289
+ 69095749,
2290
+ 54257856.05,
2291
+ 37525764,
2292
+ 37525764,
2293
+ 37525764,
2294
+ 37525764,
2295
+ 37525764,
2296
+ 37525764,
2297
+ 37525764,
2298
+ 37525764,
2299
+ 37525764,
2300
+ 37525764,
2301
+ 37525764,
2302
+ 37525764,
2303
+ 37525764,
2304
+ 37525764,
2305
+ 37525764,
2306
+ 37525764,
2307
+ 37525764,
2308
+ 37525764,
2309
+ 37525764,
2310
+ 37525764,
2311
+ 37525764,
2312
+ 37525764,
2313
+ 37525764,
2314
+ 37525764,
2315
+ 37525764,
2316
+ 2408894455.5,
2317
+ 5082991065,
2318
+ 5082991065,
2319
+ 5082991065,
2320
+ 5082991065,
2321
+ 5086825971.8,
2322
+ 5115011610.7,
2323
+ 4812577773,
2324
+ 4812577773,
2325
+ 4812577773,
2326
+ 4824094075.7,
2327
+ 4977096383,
2328
+ 4977096383,
2329
+ 4809771214.1,
2330
+ 2586736827,
2331
+ 2586736827,
2332
+ 2586736827,
2333
+ 2601799952.6,
2334
+ 2801924335,
2335
+ 2801924335,
2336
+ 2801924335,
2337
+ 2801924335,
2338
+ 2801924335,
2339
+ 2801924335,
2340
+ 2801924335,
2341
+ 2801924335,
2342
+ 2801924335,
2343
+ 2801924335,
2344
+ 2801924335,
2345
+ 2801924335,
2346
+ 2801924335,
2347
+ 2801924335,
2348
+ 2949784835.2,
2349
+ 4695957105.6,
2350
+ 1796215918,
2351
+ 1796215918,
2352
+ 1796215918,
2353
+ 1796215918,
2354
+ 1796215918,
2355
+ 1759041364.4,
2356
+ 1753486546,
2357
+ 1753486546,
2358
+ 1753486546,
2359
+ 1753486546,
2360
+ 1753486546,
2361
+ 1753486546,
2362
+ 1753486546,
2363
+ 1184101489.7,
2364
+ 1099020964,
2365
+ 1099020964,
2366
+ 1099020964,
2367
+ 1099020964,
2368
+ 1099020964,
2369
+ 1099020964,
2370
+ 1099020964,
2371
+ 1099020964,
2372
+ 1099020964,
2373
+ 985758279.22,
2374
+ 968833970,
2375
+ 968833970,
2376
+ 968833970,
2377
+ 968833970,
2378
+ 968833970,
2379
+ 968833970,
2380
+ 968833970,
2381
+ 3623849409.9,
2382
+ 4020575855,
2383
+ 4020575855,
2384
+ 4020575855,
2385
+ 4020575855,
2386
+ 4020575855,
2387
+ 4020575855,
2388
+ 4020575855,
2389
+ 4020575855,
2390
+ 4020575855,
2391
+ 4020575855,
2392
+ 4020575855,
2393
+ 4020575855,
2394
+ 4886590537.3,
2395
+ 5015995030,
2396
+ 5015995030,
2397
+ 5015995030,
2398
+ 5015995030,
2399
+ 5015995030,
2400
+ 5015995030,
2401
+ 5015995030,
2402
+ 5048183774.8,
2403
+ 4637944118.6,
2404
+ 3658964974.6,
2405
+ 3122834181,
2406
+ 3122834181,
2407
+ null
2408
+ ],
2409
+ "prints": [["Last:3122834181.00"], ["Average:2112555251.91"]],
2410
+ "last_value": 3122834181,
2411
+ "minimum_value": null,
2412
+ "maximum_value": null,
2413
+ "average_value": 2112555251.91
2414
+ },
2415
+ {
2416
+ "index_id": 5397,
2417
+ "metric_id": 13074,
2418
+ "metric": "mem_unused",
2419
+ "metric_legend": "mem_unused",
2420
+ "unit": "",
2421
+ "hidden": 0,
2422
+ "min": null,
2423
+ "max": null,
2424
+ "virtual": 0,
2425
+ "ds_data": {
2426
+ "compo_id": 32,
2427
+ "host_id": null,
2428
+ "service_id": null,
2429
+ "name": "Memory-stats-unused",
2430
+ "ds_order": 8,
2431
+ "ds_hidecurve": null,
2432
+ "ds_name": "mem_unused",
2433
+ "ds_color_line": "#01FD0B",
2434
+ "ds_color_line_mode": "0",
2435
+ "ds_color_area": "#01FD0B",
2436
+ "ds_color_area_warn": "#01FD0B",
2437
+ "ds_color_area_crit": "#01FD0B",
2438
+ "ds_filled": "1",
2439
+ "ds_max": null,
2440
+ "ds_min": null,
2441
+ "ds_minmax_int": "0",
2442
+ "ds_average": "1",
2443
+ "ds_last": "1",
2444
+ "ds_total": "0",
2445
+ "ds_tickness": 1,
2446
+ "ds_transparency": "10",
2447
+ "ds_invert": null,
2448
+ "ds_legend": null,
2449
+ "ds_jumpline": "0",
2450
+ "ds_stack": "1",
2451
+ "default_tpl1": null,
2452
+ "comment": null
2453
+ },
2454
+ "legend": "mem_unused",
2455
+ "stack": "1",
2456
+ "warn": null,
2457
+ "warn_low": null,
2458
+ "crit": null,
2459
+ "crit_low": null,
2460
+ "ds_order": 8,
2461
+ "data": [
2462
+ 12604211456,
2463
+ 12604211456,
2464
+ 12604211456,
2465
+ 12604211456,
2466
+ 12604211456,
2467
+ 12604211456,
2468
+ 12604211456,
2469
+ 12604211456,
2470
+ 12604211456,
2471
+ 12604211456,
2472
+ 12604211456,
2473
+ 12604211456,
2474
+ 12604211456,
2475
+ 12604211456,
2476
+ 12604211456,
2477
+ 12604211456,
2478
+ 12604211456,
2479
+ 12005689577,
2480
+ 10440879364,
2481
+ 10440879364,
2482
+ 10440879364,
2483
+ 10440879364,
2484
+ 10440879364,
2485
+ 11406102684,
2486
+ 13929638353,
2487
+ 13929638353,
2488
+ 12006913654,
2489
+ 8648217781.3,
2490
+ 13009621760,
2491
+ 13009621760,
2492
+ 13009621760,
2493
+ 10225170513,
2494
+ 3837957762,
2495
+ 14588178615,
2496
+ 14588178615,
2497
+ 14588178615,
2498
+ 14588178615,
2499
+ 14588178615,
2500
+ 14588178615,
2501
+ 14588178615,
2502
+ 14588178615,
2503
+ 14588178615,
2504
+ 14588178615,
2505
+ 14588178615,
2506
+ 14588178615,
2507
+ 14588178615,
2508
+ 14588178615,
2509
+ 14588178615,
2510
+ 14588178615,
2511
+ 14588178615,
2512
+ 14588178615,
2513
+ 14588178615,
2514
+ 7811772312.9,
2515
+ 6858437586,
2516
+ 6858437586,
2517
+ 6858437586,
2518
+ 6858437586,
2519
+ 6858437586,
2520
+ 6858437586,
2521
+ 6858437586,
2522
+ 6858437586,
2523
+ 6858437586,
2524
+ 6858437586,
2525
+ 6858437586,
2526
+ 9244649163.5,
2527
+ 9580351933,
2528
+ 9580351933,
2529
+ 9580351933,
2530
+ 9580351933,
2531
+ 9580351933,
2532
+ 9580351933,
2533
+ 9580351933,
2534
+ 9580351933,
2535
+ 9580351933,
2536
+ 9580351933,
2537
+ 9580351933,
2538
+ 12477473892,
2539
+ 12885053787,
2540
+ 11116729036,
2541
+ 10867953311,
2542
+ 10867953311,
2543
+ 10867953311,
2544
+ 10867953311,
2545
+ 13763220474,
2546
+ 14170539429,
2547
+ 14170539429,
2548
+ 14170539429,
2549
+ 14170539429,
2550
+ 14170539429,
2551
+ 14170539429,
2552
+ 14170539429,
2553
+ 14170539429,
2554
+ 5922547674.1,
2555
+ 4762183815,
2556
+ 4762183815,
2557
+ 4762183815,
2558
+ 4762183815,
2559
+ 4762183815,
2560
+ 4762183815,
2561
+ 4762183815,
2562
+ 4762183815,
2563
+ 3424407319.8,
2564
+ 9060558883.2,
2565
+ 8229225316.2,
2566
+ 4260967797,
2567
+ 4260967797,
2568
+ 4260967797,
2569
+ 4260967797,
2570
+ 4260967797,
2571
+ 4260967797,
2572
+ 4260967797,
2573
+ 4260967797,
2574
+ 4260967797,
2575
+ 4260967797,
2576
+ 6615600706.2,
2577
+ 7709703112.6,
2578
+ 6072671793,
2579
+ 6072671793,
2580
+ 6072671793,
2581
+ 6072671793,
2582
+ 6072671793,
2583
+ 6072671793,
2584
+ 6072671793,
2585
+ 6072671793,
2586
+ 6072671793,
2587
+ 6072671793,
2588
+ 6072671793,
2589
+ 9558679025.8,
2590
+ 13385973680,
2591
+ 13385973680,
2592
+ 13385973680,
2593
+ 13385973680,
2594
+ 13385973680,
2595
+ 13385973680,
2596
+ 13385973680,
2597
+ 13385973680,
2598
+ 13385973680,
2599
+ 13385973680,
2600
+ 13385973680,
2601
+ 13385973680,
2602
+ 13385973680,
2603
+ 14537075569,
2604
+ 15800872747,
2605
+ 15800872747,
2606
+ 15800872747,
2607
+ 15800872747,
2608
+ 15800872747,
2609
+ 15800872747,
2610
+ 15800872747,
2611
+ 15800872747,
2612
+ 15800872747,
2613
+ 15800872747,
2614
+ 16129502883,
2615
+ 16495161767,
2616
+ 16495161767,
2617
+ 16495161767,
2618
+ 16495161767,
2619
+ 16495161767,
2620
+ 16495161767,
2621
+ 16495161767,
2622
+ 16495161767,
2623
+ 16495161767,
2624
+ 16579694331,
2625
+ 16675018286,
2626
+ 16675018286,
2627
+ 16675018286,
2628
+ 16675018286,
2629
+ 16675018286,
2630
+ 16675018286,
2631
+ 16675018286,
2632
+ 16675018286,
2633
+ 16823164414,
2634
+ 16990222813,
2635
+ 16990222813,
2636
+ 16990222813,
2637
+ 16990222813,
2638
+ 16990222813,
2639
+ 16990222813,
2640
+ 16990222813,
2641
+ 16990222813,
2642
+ 16990222813,
2643
+ 16990222813,
2644
+ 16990222813,
2645
+ 16990222813,
2646
+ 16990222813,
2647
+ 16990222813,
2648
+ 16990222813,
2649
+ 16990222813,
2650
+ 16990222813,
2651
+ 16990222813,
2652
+ 16990222813,
2653
+ 16990222813,
2654
+ 16990222813,
2655
+ 16990222813,
2656
+ 16990222813,
2657
+ 16990222813,
2658
+ 16990222813,
2659
+ 10184312969,
2660
+ 2509563570,
2661
+ 2509563570,
2662
+ 2509563570,
2663
+ 2509563570,
2664
+ 2401111652.8,
2665
+ 1523745344.1,
2666
+ 9010177283,
2667
+ 9010177283,
2668
+ 9010177283,
2669
+ 8668718775.2,
2670
+ 4132198600,
2671
+ 4132198600,
2672
+ 4559489214.7,
2673
+ 10236350238,
2674
+ 10236350238,
2675
+ 10236350238,
2676
+ 9950666762.9,
2677
+ 6155157736,
2678
+ 6155157736,
2679
+ 6155157736,
2680
+ 6155157736,
2681
+ 6155157736,
2682
+ 6155157736,
2683
+ 6155157736,
2684
+ 6155157736,
2685
+ 6155157736,
2686
+ 6155157736,
2687
+ 6155157736,
2688
+ 6155157736,
2689
+ 6155157736,
2690
+ 6155157736,
2691
+ 5958347556.1,
2692
+ 3889418312.9,
2693
+ 11141220536,
2694
+ 11141220536,
2695
+ 11141220536,
2696
+ 11141220536,
2697
+ 11141220536,
2698
+ 12199109977,
2699
+ 12357185411,
2700
+ 12357185411,
2701
+ 12357185411,
2702
+ 12357185411,
2703
+ 12357185411,
2704
+ 12357185411,
2705
+ 12357185411,
2706
+ 14378301279,
2707
+ 14680307098,
2708
+ 14680307098,
2709
+ 14680307098,
2710
+ 14680307098,
2711
+ 14680307098,
2712
+ 14680307098,
2713
+ 14680307098,
2714
+ 14680307098,
2715
+ 14680307098,
2716
+ 15490267380,
2717
+ 15611295928,
2718
+ 15611295928,
2719
+ 15611295928,
2720
+ 15611295928,
2721
+ 15611295928,
2722
+ 15611295928,
2723
+ 15611295928,
2724
+ 6577275738.8,
2725
+ 5227364676,
2726
+ 5227364676,
2727
+ 5227364676,
2728
+ 5227364676,
2729
+ 5227364676,
2730
+ 5227364676,
2731
+ 5227364676,
2732
+ 5227364676,
2733
+ 5227364676,
2734
+ 5227364676,
2735
+ 5227364676,
2736
+ 5227364676,
2737
+ 2691263531.3,
2738
+ 2312305889,
2739
+ 2312305889,
2740
+ 2312305889,
2741
+ 2312305889,
2742
+ 2312305889,
2743
+ 2312305889,
2744
+ 2312305889,
2745
+ 1738663451.3,
2746
+ 3413143441.8,
2747
+ 8299880453.1,
2748
+ 10858585866,
2749
+ 10858585866,
2750
+ null
2751
+ ],
2752
+ "prints": [["Last:10858585866.00"], ["Average:10877585519.89"]],
2753
+ "last_value": 10858585866,
2754
+ "minimum_value": null,
2755
+ "maximum_value": null,
2756
+ "average_value": 10877585519.89
2757
+ }
2758
+ ],
2759
+ "times": [
2760
+ "2023-06-06T12:45:00+02:00",
2761
+ "2023-06-06T12:50:00+02:00",
2762
+ "2023-06-06T12:55:00+02:00",
2763
+ "2023-06-06T13:00:00+02:00",
2764
+ "2023-06-06T13:05:00+02:00",
2765
+ "2023-06-06T13:10:00+02:00",
2766
+ "2023-06-06T13:15:00+02:00",
2767
+ "2023-06-06T13:20:00+02:00",
2768
+ "2023-06-06T13:25:00+02:00",
2769
+ "2023-06-06T13:30:00+02:00",
2770
+ "2023-06-06T13:35:00+02:00",
2771
+ "2023-06-06T13:40:00+02:00",
2772
+ "2023-06-06T13:45:00+02:00",
2773
+ "2023-06-06T13:50:00+02:00",
2774
+ "2023-06-06T13:55:00+02:00",
2775
+ "2023-06-06T14:00:00+02:00",
2776
+ "2023-06-06T14:05:00+02:00",
2777
+ "2023-06-06T14:10:00+02:00",
2778
+ "2023-06-06T14:15:00+02:00",
2779
+ "2023-06-06T14:20:00+02:00",
2780
+ "2023-06-06T14:25:00+02:00",
2781
+ "2023-06-06T14:30:00+02:00",
2782
+ "2023-06-06T14:35:00+02:00",
2783
+ "2023-06-06T14:40:00+02:00",
2784
+ "2023-06-06T14:45:00+02:00",
2785
+ "2023-06-06T14:50:00+02:00",
2786
+ "2023-06-06T14:55:00+02:00",
2787
+ "2023-06-06T15:00:00+02:00",
2788
+ "2023-06-06T15:05:00+02:00",
2789
+ "2023-06-06T15:10:00+02:00",
2790
+ "2023-06-06T15:15:00+02:00",
2791
+ "2023-06-06T15:20:00+02:00",
2792
+ "2023-06-06T15:25:00+02:00",
2793
+ "2023-06-06T15:30:00+02:00",
2794
+ "2023-06-06T15:35:00+02:00",
2795
+ "2023-06-06T15:40:00+02:00",
2796
+ "2023-06-06T15:45:00+02:00",
2797
+ "2023-06-06T15:50:00+02:00",
2798
+ "2023-06-06T15:55:00+02:00",
2799
+ "2023-06-06T16:00:00+02:00",
2800
+ "2023-06-06T16:05:00+02:00",
2801
+ "2023-06-06T16:10:00+02:00",
2802
+ "2023-06-06T16:15:00+02:00",
2803
+ "2023-06-06T16:20:00+02:00",
2804
+ "2023-06-06T16:25:00+02:00",
2805
+ "2023-06-06T16:30:00+02:00",
2806
+ "2023-06-06T16:35:00+02:00",
2807
+ "2023-06-06T16:40:00+02:00",
2808
+ "2023-06-06T16:45:00+02:00",
2809
+ "2023-06-06T16:50:00+02:00",
2810
+ "2023-06-06T16:55:00+02:00",
2811
+ "2023-06-06T17:00:00+02:00",
2812
+ "2023-06-06T17:05:00+02:00",
2813
+ "2023-06-06T17:10:00+02:00",
2814
+ "2023-06-06T17:15:00+02:00",
2815
+ "2023-06-06T17:20:00+02:00",
2816
+ "2023-06-06T17:25:00+02:00",
2817
+ "2023-06-06T17:30:00+02:00",
2818
+ "2023-06-06T17:35:00+02:00",
2819
+ "2023-06-06T17:40:00+02:00",
2820
+ "2023-06-06T17:45:00+02:00",
2821
+ "2023-06-06T17:50:00+02:00",
2822
+ "2023-06-06T17:55:00+02:00",
2823
+ "2023-06-06T18:00:00+02:00",
2824
+ "2023-06-06T18:05:00+02:00",
2825
+ "2023-06-06T18:10:00+02:00",
2826
+ "2023-06-06T18:15:00+02:00",
2827
+ "2023-06-06T18:20:00+02:00",
2828
+ "2023-06-06T18:25:00+02:00",
2829
+ "2023-06-06T18:30:00+02:00",
2830
+ "2023-06-06T18:35:00+02:00",
2831
+ "2023-06-06T18:40:00+02:00",
2832
+ "2023-06-06T18:45:00+02:00",
2833
+ "2023-06-06T18:50:00+02:00",
2834
+ "2023-06-06T18:55:00+02:00",
2835
+ "2023-06-06T19:00:00+02:00",
2836
+ "2023-06-06T19:05:00+02:00",
2837
+ "2023-06-06T19:10:00+02:00",
2838
+ "2023-06-06T19:15:00+02:00",
2839
+ "2023-06-06T19:20:00+02:00",
2840
+ "2023-06-06T19:25:00+02:00",
2841
+ "2023-06-06T19:30:00+02:00",
2842
+ "2023-06-06T19:35:00+02:00",
2843
+ "2023-06-06T19:40:00+02:00",
2844
+ "2023-06-06T19:45:00+02:00",
2845
+ "2023-06-06T19:50:00+02:00",
2846
+ "2023-06-06T19:55:00+02:00",
2847
+ "2023-06-06T20:00:00+02:00",
2848
+ "2023-06-06T20:05:00+02:00",
2849
+ "2023-06-06T20:10:00+02:00",
2850
+ "2023-06-06T20:15:00+02:00",
2851
+ "2023-06-06T20:20:00+02:00",
2852
+ "2023-06-06T20:25:00+02:00",
2853
+ "2023-06-06T20:30:00+02:00",
2854
+ "2023-06-06T20:35:00+02:00",
2855
+ "2023-06-06T20:40:00+02:00",
2856
+ "2023-06-06T20:45:00+02:00",
2857
+ "2023-06-06T20:50:00+02:00",
2858
+ "2023-06-06T20:55:00+02:00",
2859
+ "2023-06-06T21:00:00+02:00",
2860
+ "2023-06-06T21:05:00+02:00",
2861
+ "2023-06-06T21:10:00+02:00",
2862
+ "2023-06-06T21:15:00+02:00",
2863
+ "2023-06-06T21:20:00+02:00",
2864
+ "2023-06-06T21:25:00+02:00",
2865
+ "2023-06-06T21:30:00+02:00",
2866
+ "2023-06-06T21:35:00+02:00",
2867
+ "2023-06-06T21:40:00+02:00",
2868
+ "2023-06-06T21:45:00+02:00",
2869
+ "2023-06-06T21:50:00+02:00",
2870
+ "2023-06-06T21:55:00+02:00",
2871
+ "2023-06-06T22:00:00+02:00",
2872
+ "2023-06-06T22:05:00+02:00",
2873
+ "2023-06-06T22:10:00+02:00",
2874
+ "2023-06-06T22:15:00+02:00",
2875
+ "2023-06-06T22:20:00+02:00",
2876
+ "2023-06-06T22:25:00+02:00",
2877
+ "2023-06-06T22:30:00+02:00",
2878
+ "2023-06-06T22:35:00+02:00",
2879
+ "2023-06-06T22:40:00+02:00",
2880
+ "2023-06-06T22:45:00+02:00",
2881
+ "2023-06-06T22:50:00+02:00",
2882
+ "2023-06-06T22:55:00+02:00",
2883
+ "2023-06-06T23:00:00+02:00",
2884
+ "2023-06-06T23:05:00+02:00",
2885
+ "2023-06-06T23:10:00+02:00",
2886
+ "2023-06-06T23:15:00+02:00",
2887
+ "2023-06-06T23:20:00+02:00",
2888
+ "2023-06-06T23:25:00+02:00",
2889
+ "2023-06-06T23:30:00+02:00",
2890
+ "2023-06-06T23:35:00+02:00",
2891
+ "2023-06-06T23:40:00+02:00",
2892
+ "2023-06-06T23:45:00+02:00",
2893
+ "2023-06-06T23:50:00+02:00",
2894
+ "2023-06-06T23:55:00+02:00",
2895
+ "2023-06-07T00:00:00+02:00",
2896
+ "2023-06-07T00:05:00+02:00",
2897
+ "2023-06-07T00:10:00+02:00",
2898
+ "2023-06-07T00:15:00+02:00",
2899
+ "2023-06-07T00:20:00+02:00",
2900
+ "2023-06-07T00:25:00+02:00",
2901
+ "2023-06-07T00:30:00+02:00",
2902
+ "2023-06-07T00:35:00+02:00",
2903
+ "2023-06-07T00:40:00+02:00",
2904
+ "2023-06-07T00:45:00+02:00",
2905
+ "2023-06-07T00:50:00+02:00",
2906
+ "2023-06-07T00:55:00+02:00",
2907
+ "2023-06-07T01:00:00+02:00",
2908
+ "2023-06-07T01:05:00+02:00",
2909
+ "2023-06-07T01:10:00+02:00",
2910
+ "2023-06-07T01:15:00+02:00",
2911
+ "2023-06-07T01:20:00+02:00",
2912
+ "2023-06-07T01:25:00+02:00",
2913
+ "2023-06-07T01:30:00+02:00",
2914
+ "2023-06-07T01:35:00+02:00",
2915
+ "2023-06-07T01:40:00+02:00",
2916
+ "2023-06-07T01:45:00+02:00",
2917
+ "2023-06-07T01:50:00+02:00",
2918
+ "2023-06-07T01:55:00+02:00",
2919
+ "2023-06-07T02:00:00+02:00",
2920
+ "2023-06-07T02:05:00+02:00",
2921
+ "2023-06-07T02:10:00+02:00",
2922
+ "2023-06-07T02:15:00+02:00",
2923
+ "2023-06-07T02:20:00+02:00",
2924
+ "2023-06-07T02:25:00+02:00",
2925
+ "2023-06-07T02:30:00+02:00",
2926
+ "2023-06-07T02:35:00+02:00",
2927
+ "2023-06-07T02:40:00+02:00",
2928
+ "2023-06-07T02:45:00+02:00",
2929
+ "2023-06-07T02:50:00+02:00",
2930
+ "2023-06-07T02:55:00+02:00",
2931
+ "2023-06-07T03:00:00+02:00",
2932
+ "2023-06-07T03:05:00+02:00",
2933
+ "2023-06-07T03:10:00+02:00",
2934
+ "2023-06-07T03:15:00+02:00",
2935
+ "2023-06-07T03:20:00+02:00",
2936
+ "2023-06-07T03:25:00+02:00",
2937
+ "2023-06-07T03:30:00+02:00",
2938
+ "2023-06-07T03:35:00+02:00",
2939
+ "2023-06-07T03:40:00+02:00",
2940
+ "2023-06-07T03:45:00+02:00",
2941
+ "2023-06-07T03:50:00+02:00",
2942
+ "2023-06-07T03:55:00+02:00",
2943
+ "2023-06-07T04:00:00+02:00",
2944
+ "2023-06-07T04:05:00+02:00",
2945
+ "2023-06-07T04:10:00+02:00",
2946
+ "2023-06-07T04:15:00+02:00",
2947
+ "2023-06-07T04:20:00+02:00",
2948
+ "2023-06-07T04:25:00+02:00",
2949
+ "2023-06-07T04:30:00+02:00",
2950
+ "2023-06-07T04:35:00+02:00",
2951
+ "2023-06-07T04:40:00+02:00",
2952
+ "2023-06-07T04:45:00+02:00",
2953
+ "2023-06-07T04:50:00+02:00",
2954
+ "2023-06-07T04:55:00+02:00",
2955
+ "2023-06-07T05:00:00+02:00",
2956
+ "2023-06-07T05:05:00+02:00",
2957
+ "2023-06-07T05:10:00+02:00",
2958
+ "2023-06-07T05:15:00+02:00",
2959
+ "2023-06-07T05:20:00+02:00",
2960
+ "2023-06-07T05:25:00+02:00",
2961
+ "2023-06-07T05:30:00+02:00",
2962
+ "2023-06-07T05:35:00+02:00",
2963
+ "2023-06-07T05:40:00+02:00",
2964
+ "2023-06-07T05:45:00+02:00",
2965
+ "2023-06-07T05:50:00+02:00",
2966
+ "2023-06-07T05:55:00+02:00",
2967
+ "2023-06-07T06:00:00+02:00",
2968
+ "2023-06-07T06:05:00+02:00",
2969
+ "2023-06-07T06:10:00+02:00",
2970
+ "2023-06-07T06:15:00+02:00",
2971
+ "2023-06-07T06:20:00+02:00",
2972
+ "2023-06-07T06:25:00+02:00",
2973
+ "2023-06-07T06:30:00+02:00",
2974
+ "2023-06-07T06:35:00+02:00",
2975
+ "2023-06-07T06:40:00+02:00",
2976
+ "2023-06-07T06:45:00+02:00",
2977
+ "2023-06-07T06:50:00+02:00",
2978
+ "2023-06-07T06:55:00+02:00",
2979
+ "2023-06-07T07:00:00+02:00",
2980
+ "2023-06-07T07:05:00+02:00",
2981
+ "2023-06-07T07:10:00+02:00",
2982
+ "2023-06-07T07:15:00+02:00",
2983
+ "2023-06-07T07:20:00+02:00",
2984
+ "2023-06-07T07:25:00+02:00",
2985
+ "2023-06-07T07:30:00+02:00",
2986
+ "2023-06-07T07:35:00+02:00",
2987
+ "2023-06-07T07:40:00+02:00",
2988
+ "2023-06-07T07:45:00+02:00",
2989
+ "2023-06-07T07:50:00+02:00",
2990
+ "2023-06-07T07:55:00+02:00",
2991
+ "2023-06-07T08:00:00+02:00",
2992
+ "2023-06-07T08:05:00+02:00",
2993
+ "2023-06-07T08:10:00+02:00",
2994
+ "2023-06-07T08:15:00+02:00",
2995
+ "2023-06-07T08:20:00+02:00",
2996
+ "2023-06-07T08:25:00+02:00",
2997
+ "2023-06-07T08:30:00+02:00",
2998
+ "2023-06-07T08:35:00+02:00",
2999
+ "2023-06-07T08:40:00+02:00",
3000
+ "2023-06-07T08:45:00+02:00",
3001
+ "2023-06-07T08:50:00+02:00",
3002
+ "2023-06-07T08:55:00+02:00",
3003
+ "2023-06-07T09:00:00+02:00",
3004
+ "2023-06-07T09:05:00+02:00",
3005
+ "2023-06-07T09:10:00+02:00",
3006
+ "2023-06-07T09:15:00+02:00",
3007
+ "2023-06-07T09:20:00+02:00",
3008
+ "2023-06-07T09:25:00+02:00",
3009
+ "2023-06-07T09:30:00+02:00",
3010
+ "2023-06-07T09:35:00+02:00",
3011
+ "2023-06-07T09:40:00+02:00",
3012
+ "2023-06-07T09:45:00+02:00",
3013
+ "2023-06-07T09:50:00+02:00",
3014
+ "2023-06-07T09:55:00+02:00",
3015
+ "2023-06-07T10:00:00+02:00",
3016
+ "2023-06-07T10:05:00+02:00",
3017
+ "2023-06-07T10:10:00+02:00",
3018
+ "2023-06-07T10:15:00+02:00",
3019
+ "2023-06-07T10:20:00+02:00",
3020
+ "2023-06-07T10:25:00+02:00",
3021
+ "2023-06-07T10:30:00+02:00",
3022
+ "2023-06-07T10:35:00+02:00",
3023
+ "2023-06-07T10:40:00+02:00",
3024
+ "2023-06-07T10:45:00+02:00",
3025
+ "2023-06-07T10:50:00+02:00",
3026
+ "2023-06-07T10:55:00+02:00",
3027
+ "2023-06-07T11:00:00+02:00",
3028
+ "2023-06-07T11:05:00+02:00",
3029
+ "2023-06-07T11:10:00+02:00",
3030
+ "2023-06-07T11:15:00+02:00",
3031
+ "2023-06-07T11:20:00+02:00",
3032
+ "2023-06-07T11:25:00+02:00",
3033
+ "2023-06-07T11:30:00+02:00",
3034
+ "2023-06-07T11:35:00+02:00",
3035
+ "2023-06-07T11:40:00+02:00",
3036
+ "2023-06-07T11:45:00+02:00",
3037
+ "2023-06-07T11:50:00+02:00",
3038
+ "2023-06-07T11:55:00+02:00",
3039
+ "2023-06-07T12:00:00+02:00",
3040
+ "2023-06-07T12:05:00+02:00",
3041
+ "2023-06-07T12:10:00+02:00",
3042
+ "2023-06-07T12:15:00+02:00",
3043
+ "2023-06-07T12:20:00+02:00",
3044
+ "2023-06-07T12:25:00+02:00",
3045
+ "2023-06-07T12:30:00+02:00",
3046
+ "2023-06-07T12:35:00+02:00",
3047
+ "2023-06-07T12:40:00+02:00",
3048
+ "2023-06-07T12:45:00+02:00"
3049
+ ]
3050
+ }