@centreon/ui 24.4.21 → 24.4.22

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