@centreon/ui 24.9.4 → 24.9.6

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