@centreon/ui 24.4.21 → 24.4.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (576) hide show
  1. package/README.md +44 -14
  2. package/package.json +109 -34
  3. package/public/README.md +39 -0
  4. package/public/mockServiceWorker.js +303 -0
  5. package/src/@assets/README.md +5 -0
  6. package/src/@assets/brand/centreon-logo-one-line-dark.svg +1 -0
  7. package/src/@assets/brand/centreon-logo-one-line-light.svg +1 -0
  8. package/src/@assets/icons/downtime.icon.svg +1 -0
  9. package/src/@types/aria-attributes.d.ts +10 -0
  10. package/src/@types/data-attributes.d.ts +3 -0
  11. package/src/@types/globals.d.ts +9 -0
  12. package/src/@types/vite-env.d.ts +2 -0
  13. package/src/ActionsList/ActionsList.styles.ts +116 -0
  14. package/src/ActionsList/index.stories.tsx +74 -0
  15. package/src/ActionsList/index.tsx +58 -21
  16. package/src/ActionsList/models.ts +8 -0
  17. package/src/Button/Icon/index.tsx +12 -3
  18. package/src/Button/Save/Content.tsx +26 -9
  19. package/src/Button/Save/StartIcon.tsx +3 -3
  20. package/src/Button/Save/index.stories.tsx +10 -5
  21. package/src/Button/Save/index.tsx +11 -4
  22. package/src/Checkbox/Checkbox.tsx +109 -0
  23. package/src/Checkbox/CheckboxGroup/index.stories.tsx +41 -0
  24. package/src/Checkbox/CheckboxGroup/index.tsx +75 -0
  25. package/src/Checkbox/index.stories.tsx +39 -0
  26. package/src/Checkbox/index.tsx +2 -0
  27. package/src/Dashboard/Dashboard.styles.ts +108 -0
  28. package/src/Dashboard/DashboardLayout.stories.tsx +104 -0
  29. package/src/Dashboard/Grid.tsx +70 -0
  30. package/src/Dashboard/Item.tsx +100 -0
  31. package/src/Dashboard/Layout.tsx +79 -0
  32. package/src/Dashboard/index.tsx +9 -0
  33. package/src/Dashboard/utils.ts +28 -0
  34. package/src/Dialog/Confirm/index.tsx +17 -4
  35. package/src/Dialog/Duplicate/index.test.tsx +1 -1
  36. package/src/Dialog/index.tsx +14 -2
  37. package/src/FallbackPage/FallbackPage.tsx +5 -5
  38. package/src/FileDropZone/index.tsx +4 -2
  39. package/src/Form/CollapsibleGroup.tsx +15 -5
  40. package/src/Form/Form.cypress.spec.tsx +133 -0
  41. package/src/Form/{index.stories.tsx → Form.stories.tsx} +2 -3
  42. package/src/Form/Form.styles.ts +11 -0
  43. package/src/Form/{index.tsx → Form.tsx} +38 -16
  44. package/src/Form/FormButtons.tsx +2 -4
  45. package/src/Form/Inputs/Autocomplete.tsx +1 -1
  46. package/src/Form/Inputs/Checkbox.tsx +57 -0
  47. package/src/Form/Inputs/CheckboxGroup.tsx +73 -0
  48. package/src/Form/Inputs/ConnectedAutocomplete.tsx +3 -1
  49. package/src/Form/Inputs/Grid.tsx +4 -2
  50. package/src/Form/Inputs/List/Content.tsx +62 -0
  51. package/src/Form/Inputs/List/List.styles.ts +29 -0
  52. package/src/Form/Inputs/List/List.tsx +58 -0
  53. package/src/Form/Inputs/List/useList.ts +81 -0
  54. package/src/Form/Inputs/Radio.tsx +16 -5
  55. package/src/Form/Inputs/Switch.tsx +1 -1
  56. package/src/Form/Inputs/Text.tsx +18 -7
  57. package/src/Form/Inputs/index.tsx +34 -16
  58. package/src/Form/Inputs/models.ts +28 -4
  59. package/src/Form/index.ts +1 -0
  60. package/src/Form/storiesData.tsx +50 -3
  61. package/src/Graph/Gauge/AnimatedPie.tsx +102 -0
  62. package/src/Graph/Gauge/Gauge.stories.tsx +159 -0
  63. package/src/Graph/Gauge/Gauge.tsx +41 -0
  64. package/src/Graph/Gauge/PieData.tsx +63 -0
  65. package/src/Graph/Gauge/ResponsiveGauge.tsx +148 -0
  66. package/src/Graph/Gauge/Thresholds.tsx +117 -0
  67. package/src/Graph/Gauge/index.ts +1 -0
  68. package/src/Graph/Gauge/models.ts +20 -0
  69. package/src/Graph/HeatMap/HeatMap.stories.tsx +105 -0
  70. package/src/Graph/HeatMap/HeatMap.styles.tsx +29 -0
  71. package/src/Graph/HeatMap/HeatMap.tsx +12 -0
  72. package/src/Graph/HeatMap/HeatMapData.json +137 -0
  73. package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +98 -0
  74. package/src/Graph/HeatMap/index.ts +1 -0
  75. package/src/Graph/HeatMap/model.ts +33 -0
  76. package/src/Graph/LineChart/BasicComponents/Axes/UnitLabel.tsx +20 -0
  77. package/src/Graph/LineChart/BasicComponents/Axes/index.tsx +88 -0
  78. package/src/Graph/LineChart/BasicComponents/Axes/models.ts +26 -0
  79. package/src/Graph/LineChart/BasicComponents/Axes/useAxisY.ts +100 -0
  80. package/src/Graph/LineChart/BasicComponents/Grids/index.tsx +20 -0
  81. package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/index.tsx +99 -0
  82. package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/useRegularLines.ts +15 -0
  83. package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/index.tsx +81 -0
  84. package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/useStackedLines.ts +39 -0
  85. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/BasicThreshold.tsx +53 -0
  86. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/Circle.tsx +43 -0
  87. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithPatternLines.tsx +78 -0
  88. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithVariation.tsx +63 -0
  89. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/helpers/index.ts +69 -0
  90. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/index.tsx +143 -0
  91. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/models.ts +105 -0
  92. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useCoordinateCircle.ts +46 -0
  93. package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useScaleThreshold.ts +171 -0
  94. package/src/Graph/LineChart/BasicComponents/Lines/index.tsx +189 -0
  95. package/src/Graph/LineChart/BasicComponents/Lines/models.ts +45 -0
  96. package/src/Graph/LineChart/BasicComponents/LoadingProgress.tsx +46 -0
  97. package/src/Graph/LineChart/BasicComponents/ThresholdLine.tsx +64 -0
  98. package/src/Graph/LineChart/BasicComponents/Thresholds.tsx +77 -0
  99. package/src/Graph/LineChart/BasicComponents/useFilterLines.ts +60 -0
  100. package/src/Graph/LineChart/Header/index.tsx +65 -0
  101. package/src/Graph/LineChart/Icons/Downtime.tsx +9 -0
  102. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/GuidingLines.tsx +45 -0
  103. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/RegularAnchorPoint.tsx +66 -0
  104. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/StackedAnchorPoint.tsx +76 -0
  105. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/TooltipAnchorPoint.tsx +96 -0
  106. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/index.tsx +20 -0
  107. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/models.ts +62 -0
  108. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTickGraph.ts +94 -0
  109. package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTooltipAnchorPoint.ts +107 -0
  110. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Area.tsx +114 -0
  111. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Line.tsx +103 -0
  112. package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/index.tsx +80 -0
  113. package/src/Graph/LineChart/InteractiveComponents/Annotations/Area/Downtime.tsx +27 -0
  114. package/src/Graph/LineChart/InteractiveComponents/Annotations/EventAnnotations.tsx +61 -0
  115. package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Acknowledgement.tsx +27 -0
  116. package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Comments.tsx +25 -0
  117. package/src/Graph/LineChart/InteractiveComponents/Annotations/annotationsAtoms.ts +183 -0
  118. package/src/Graph/LineChart/InteractiveComponents/Annotations/index.tsx +49 -0
  119. package/src/Graph/LineChart/InteractiveComponents/Annotations/models.ts +25 -0
  120. package/src/Graph/LineChart/InteractiveComponents/Annotations/useAnnotation.ts +56 -0
  121. package/src/Graph/LineChart/InteractiveComponents/Bar.tsx +21 -0
  122. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftIcon.tsx +62 -0
  123. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftZone.tsx +74 -0
  124. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/index.tsx +85 -0
  125. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/models.ts +12 -0
  126. package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/useTimeShiftZones.ts +72 -0
  127. package/src/Graph/LineChart/InteractiveComponents/Tooltip/index.tsx +59 -0
  128. package/src/Graph/LineChart/InteractiveComponents/Tooltip/models.ts +9 -0
  129. package/src/Graph/LineChart/InteractiveComponents/Tooltip/useGraphTooltip.ts +67 -0
  130. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/index.tsx +38 -0
  131. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/models.ts +9 -0
  132. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/useZoomPreview.ts +107 -0
  133. package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/zoomPreviewAtoms.ts +3 -0
  134. package/src/Graph/LineChart/InteractiveComponents/index.tsx +168 -0
  135. package/src/Graph/LineChart/InteractiveComponents/interactionWithGraphAtoms.ts +52 -0
  136. package/src/Graph/LineChart/Legend/InteractiveValue.tsx +22 -0
  137. package/src/Graph/LineChart/Legend/Legend.styles.ts +117 -0
  138. package/src/Graph/LineChart/Legend/LegendContent.tsx +33 -0
  139. package/src/Graph/LineChart/Legend/LegendHeader.tsx +93 -0
  140. package/src/Graph/LineChart/Legend/index.tsx +201 -0
  141. package/src/Graph/LineChart/Legend/models.ts +16 -0
  142. package/src/Graph/LineChart/Legend/useInteractiveValues.ts +99 -0
  143. package/src/Graph/LineChart/Legend/useLegend.ts +104 -0
  144. package/src/Graph/LineChart/LineChart.styles.ts +45 -0
  145. package/src/Graph/LineChart/LineChart.tsx +317 -0
  146. package/src/Graph/LineChart/LoadingSkeleton.tsx +44 -0
  147. package/src/Graph/LineChart/common/index.ts +35 -0
  148. package/src/Graph/LineChart/graphAtoms.ts +3 -0
  149. package/src/Graph/LineChart/helpers/doc.ts +563 -0
  150. package/src/Graph/LineChart/helpers/index.ts +63 -0
  151. package/src/Graph/LineChart/index.stories.tsx +480 -0
  152. package/src/Graph/LineChart/index.tsx +115 -0
  153. package/src/Graph/LineChart/mockedData/annotationData.json +326 -0
  154. package/src/Graph/LineChart/mockedData/exclusionPeriodFirstPeriod.json +588 -0
  155. package/src/Graph/LineChart/mockedData/exclusionPeriodSecondPeriod.json +588 -0
  156. package/src/Graph/LineChart/mockedData/exclusionPeriodThirdPeriod.json +581 -0
  157. package/src/Graph/LineChart/mockedData/lastDay.json +1326 -0
  158. package/src/Graph/LineChart/mockedData/lastDayAreaStack.json +3106 -0
  159. package/src/Graph/LineChart/mockedData/lastDayForward.json +1338 -0
  160. package/src/Graph/LineChart/mockedData/lastDayThreshold.json +2352 -0
  161. package/src/Graph/LineChart/mockedData/lastMonth.json +1674 -0
  162. package/src/Graph/LineChart/mockedData/lastWeek.json +2202 -0
  163. package/src/Graph/LineChart/mockedData/zoomPreview.json +742 -0
  164. package/src/Graph/LineChart/models.ts +146 -0
  165. package/src/Graph/LineChart/translatedLabels.ts +9 -0
  166. package/src/Graph/LineChart/useLineChartData.ts +49 -0
  167. package/src/Graph/LineChart/useLineChartIntersection.ts +36 -0
  168. package/src/Graph/SingleBar/ResponsiveSingleBar.tsx +197 -0
  169. package/src/Graph/SingleBar/SingleBar.stories.tsx +204 -0
  170. package/src/Graph/SingleBar/SingleBar.tsx +25 -0
  171. package/src/Graph/SingleBar/ThresholdLine.tsx +103 -0
  172. package/src/Graph/SingleBar/Thresholds.tsx +50 -0
  173. package/src/Graph/SingleBar/index.ts +1 -0
  174. package/src/Graph/SingleBar/models.ts +10 -0
  175. package/src/Graph/Text/Text.stories.tsx +123 -0
  176. package/src/Graph/Text/Text.styles.ts +17 -0
  177. package/src/Graph/Text/Text.tsx +91 -0
  178. package/src/Graph/Text/index.ts +1 -0
  179. package/src/Graph/common/margins.ts +1 -0
  180. package/src/Graph/common/models.ts +19 -0
  181. package/src/Graph/common/timeSeries/index.test.ts +624 -0
  182. package/src/Graph/common/timeSeries/index.ts +626 -0
  183. package/src/Graph/common/timeSeries/models.ts +129 -0
  184. package/src/Graph/common/utils.ts +75 -0
  185. package/src/Graph/index.ts +5 -0
  186. package/src/Home.stories.mdx +1 -84
  187. package/src/Image/Image.tsx +11 -1
  188. package/src/Image/index.stories.tsx +2 -2
  189. package/src/Image/index.test.tsx +3 -3
  190. package/src/InputField/Search/PersistentTooltip.tsx +10 -6
  191. package/src/InputField/Select/Autocomplete/Connected/Multi/MultiConnectedAutocompleteField.cypress.spec.tsx +127 -0
  192. package/src/InputField/Select/Autocomplete/Connected/Multi/index.test.tsx +4 -22
  193. package/src/InputField/Select/Autocomplete/Connected/Multi/utils/index.ts +22 -0
  194. package/src/InputField/Select/Autocomplete/Connected/index.stories.tsx +0 -3
  195. package/src/InputField/Select/Autocomplete/Connected/index.test.tsx +4 -7
  196. package/src/InputField/Select/Autocomplete/Connected/index.tsx +56 -15
  197. package/src/InputField/Select/Autocomplete/Draggable/SortableList.tsx +1 -1
  198. package/src/InputField/Select/Autocomplete/Draggable/SortableListContent.tsx +1 -1
  199. package/src/InputField/Select/Autocomplete/Draggable/index.stories.tsx +0 -2
  200. package/src/InputField/Select/Autocomplete/Draggable/index.tsx +1 -1
  201. package/src/InputField/Select/Autocomplete/Multi/index.tsx +32 -15
  202. package/src/InputField/Select/Autocomplete/index.stories.tsx +1 -10
  203. package/src/InputField/Select/Autocomplete/index.tsx +5 -2
  204. package/src/InputField/Select/IconPopover/index.tsx +2 -2
  205. package/src/InputField/Select/index.tsx +3 -2
  206. package/src/InputField/Text/index.tsx +19 -9
  207. package/src/Listing/ActionBar/index.tsx +15 -8
  208. package/src/Listing/Cell/DataCell.styles.ts +24 -0
  209. package/src/Listing/Cell/DataCell.tsx +58 -69
  210. package/src/Listing/Cell/index.tsx +88 -8
  211. package/src/Listing/EmptyResult/EmptyResult.tsx +13 -0
  212. package/src/Listing/Header/Cell/ListingHeaderCell.styles.ts +71 -0
  213. package/src/Listing/Header/{SortableCell/Content.tsx → Cell/ListingHeaderCell.tsx} +18 -83
  214. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.styles.ts +26 -0
  215. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.tsx +70 -0
  216. package/src/Listing/Header/ListingHeader.styles.ts +16 -0
  217. package/src/Listing/Header/{index.tsx → ListingHeader.tsx} +29 -106
  218. package/src/Listing/Header/_internals/DraggableIconButton.tsx +35 -0
  219. package/src/Listing/Header/{PredefinedSelectionList.tsx → _internals/PredefinedSelectionList.tsx} +1 -1
  220. package/src/Listing/Header/index.ts +1 -0
  221. package/src/Listing/Listing.cypress.spec.tsx +122 -0
  222. package/src/Listing/Listing.styles.ts +80 -0
  223. package/src/Listing/ListingDocs.mdx +61 -0
  224. package/src/Listing/Row/EmptyRow.styles.ts +14 -0
  225. package/src/Listing/Row/EmptyRow.tsx +30 -0
  226. package/src/Listing/{Row.tsx → Row/Row.tsx} +12 -11
  227. package/src/Listing/Row/SkeletonLoaderRows.tsx +23 -0
  228. package/src/Listing/index.stories.tsx +155 -40
  229. package/src/Listing/index.test.tsx +1 -1
  230. package/src/Listing/index.tsx +217 -263
  231. package/src/Listing/models.ts +1 -0
  232. package/src/Listing/tableAtoms.ts +15 -10
  233. package/src/Listing/useStyleTable.ts +9 -9
  234. package/src/ListingPage/index.stories.tsx +21 -8
  235. package/src/ListingPage/index.tsx +20 -38
  236. package/src/Logo/CentreonLogo.tsx +2 -2
  237. package/src/Module/LicensedModule/LicenseCheck/index.stories.tsx +0 -2
  238. package/src/Module/LicensedModule/LicenseCheck/index.tsx +24 -9
  239. package/src/Module/LicensedModule/index.tsx +7 -1
  240. package/src/Module/Module.cypress.spec.tsx +129 -0
  241. package/src/Module/index.tsx +2 -4
  242. package/src/Panel/Memoized.tsx +1 -1
  243. package/src/Panel/Section/index.test.tsx +1 -1
  244. package/src/Panel/Section/index.tsx +1 -1
  245. package/src/Panel/index.tsx +10 -6
  246. package/src/ParentSize/ParentSize.tsx +24 -0
  247. package/src/ParentSize/index.ts +1 -0
  248. package/src/PopoverMenu/index.tsx +18 -4
  249. package/src/RichTextEditor/ContentEditable.tsx +70 -24
  250. package/src/RichTextEditor/RichTextEditor.cypress.spec.tsx +408 -0
  251. package/src/RichTextEditor/RichTextEditor.tsx +172 -47
  252. package/src/RichTextEditor/index.stories.tsx +14 -0
  253. package/src/RichTextEditor/plugins/AutoLinkPlugin/index.tsx +53 -5
  254. package/src/RichTextEditor/plugins/FloatingLinkEditorPlugin.tsx +54 -16
  255. package/src/RichTextEditor/plugins/ToolbarPlugin/AlignPicker.tsx +116 -0
  256. package/src/RichTextEditor/plugins/ToolbarPlugin/BlockButtons.tsx +155 -0
  257. package/src/RichTextEditor/plugins/ToolbarPlugin/FormatButtons.tsx +31 -92
  258. package/src/RichTextEditor/plugins/ToolbarPlugin/LinkButton.tsx +106 -0
  259. package/src/RichTextEditor/plugins/ToolbarPlugin/ListButton.tsx +155 -0
  260. package/src/RichTextEditor/plugins/ToolbarPlugin/MacrosButton.tsx +75 -0
  261. package/src/RichTextEditor/plugins/ToolbarPlugin/ToolbarPlugin.styles.ts +32 -0
  262. package/src/RichTextEditor/plugins/ToolbarPlugin/UndoRedoButtons.tsx +13 -3
  263. package/src/RichTextEditor/plugins/ToolbarPlugin/index.tsx +35 -10
  264. package/src/RichTextEditor/translatedLabels.ts +3 -0
  265. package/src/Snackbar/index.tsx +14 -4
  266. package/src/Snackbar/useSnackbar.tsx +5 -1
  267. package/src/SortableItems/SortableItem.tsx +3 -2
  268. package/src/SortableItems/index.tsx +2 -7
  269. package/src/ThemeProvider/index.tsx +42 -10
  270. package/src/ThemeProvider/palettes.ts +422 -201
  271. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.styles.ts +51 -0
  272. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.tsx +95 -0
  273. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/ErrorText.tsx +14 -0
  274. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/PickersStartEndDate.tsx +171 -0
  275. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/index.tsx +76 -0
  276. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/models.ts +59 -0
  277. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/usePickersStartEndDate.ts +82 -0
  278. package/src/TimePeriods/CustomTimePeriod/SimpleCustomTimePeriod.tsx +28 -0
  279. package/src/TimePeriods/CustomTimePeriod/index.tsx +66 -0
  280. package/src/TimePeriods/DateTimePickerInput.tsx +77 -0
  281. package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +65 -0
  282. package/src/TimePeriods/SelectedTimePeriod.tsx +102 -0
  283. package/src/TimePeriods/TimePeriods.cypress.spec.tsx +486 -0
  284. package/src/TimePeriods/TimePeriods.styles.ts +22 -0
  285. package/src/TimePeriods/helpers/index.ts +26 -0
  286. package/src/TimePeriods/index.stories.tsx +121 -0
  287. package/src/TimePeriods/index.tsx +79 -0
  288. package/src/TimePeriods/mockedData.ts +12 -0
  289. package/src/TimePeriods/models.ts +97 -0
  290. package/src/TimePeriods/timePeriodsAtoms.ts +102 -0
  291. package/src/TimePeriods/translatedLabels.ts +9 -0
  292. package/src/TimePeriods/useSortTimePeriods.ts +31 -0
  293. package/src/TimePeriods/useTimePeriod.ts +49 -0
  294. package/src/Typography/EllipsisTypography.tsx +18 -0
  295. package/src/Typography/FluidTypography/index.stories.tsx +63 -0
  296. package/src/Typography/FluidTypography/index.tsx +51 -0
  297. package/src/Typography/FluidTypography/useFluidResizeObserver.ts +56 -0
  298. package/src/Typography/Subtitle.tsx +55 -0
  299. package/src/Typography/{index.stories.tsx → Typography.stories.tsx} +5 -5
  300. package/src/WallpaperPage/index.stories.tsx +1 -1
  301. package/src/Wizard/ActionsBar.test.tsx +1 -1
  302. package/src/Wizard/WizardContent.tsx +2 -3
  303. package/src/Wizard/index.stories.tsx +5 -18
  304. package/src/Wizard/index.test.tsx +1 -1
  305. package/src/Wizard/index.tsx +20 -5
  306. package/src/Wizard/models.ts +7 -0
  307. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-normal-1-snap.png +0 -0
  308. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-item-header-1-snap.png +0 -0
  309. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-many-panels-1-snap.png +0 -0
  310. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-basic-1-snap.png +0 -0
  311. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-20-px-height-1-snap.png +0 -0
  312. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-200-px-width-1-snap.png +0 -0
  313. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-heading-5-variant-1-snap.png +0 -0
  314. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-long-text-1-snap.png +0 -0
  315. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-as-empty-state-1-snap.png +0 -0
  316. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-loading-with-no-data-1-snap.png +0 -0
  317. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-with-editable-and-sortable-columns-1-snap.png +0 -0
  318. package/src/api/QueryProvider.tsx +1 -1
  319. package/src/api/TestQueryProvider.tsx +2 -1
  320. package/src/api/buildListingEndpoint/getSearchQueryParameterValue.ts +35 -26
  321. package/src/api/buildListingEndpoint/index.test.ts +2 -2
  322. package/src/api/buildListingEndpoint/index.ts +1 -1
  323. package/src/api/buildListingEndpoint/models.ts +2 -2
  324. package/src/api/customFetch.ts +22 -3
  325. package/src/api/useFetchQuery/index.ts +56 -37
  326. package/src/api/useGraphQuery/index.ts +166 -0
  327. package/src/api/useGraphQuery/models.ts +15 -0
  328. package/src/api/useMutationQuery/index.ts +77 -22
  329. package/src/api/useRequest/index.ts +9 -6
  330. package/src/base/tokens/README.md +3 -0
  331. package/src/base/tokens/source/$metadata.json +5 -0
  332. package/src/base/tokens/source/base.json +142 -0
  333. package/src/base/tokens/themes/base.tokens.d.ts +38 -0
  334. package/src/base/tokens/themes/base.tokens.json +695 -0
  335. package/src/base/tokens/themes/base.tokens.ts +38 -0
  336. package/src/base/tokens/themes/ui-dark.tokens.d.ts +38 -0
  337. package/src/base/tokens/themes/ui-dark.tokens.json +695 -0
  338. package/src/base/tokens/themes/ui-dark.tokens.ts +38 -0
  339. package/src/base/tokens/themes/ui-light.tokens.d.ts +38 -0
  340. package/src/base/tokens/themes/ui-light.tokens.json +695 -0
  341. package/src/base/tokens/themes/ui-light.tokens.ts +38 -0
  342. package/src/components/Avatar/Avatar.stories.tsx +23 -0
  343. package/src/components/Avatar/Avatar.styles.ts +11 -0
  344. package/src/components/Avatar/Avatar.tsx +32 -0
  345. package/src/components/Avatar/index.ts +1 -0
  346. package/src/components/Button/Button.stories.tsx +34 -0
  347. package/src/components/Button/Button.styles.ts +44 -0
  348. package/src/components/Button/Button.tsx +78 -0
  349. package/src/components/Button/Icon/IconButton.stories.tsx +18 -0
  350. package/src/components/Button/Icon/IconButton.styles.ts +14 -0
  351. package/src/components/Button/Icon/IconButton.tsx +62 -0
  352. package/src/components/Button/Icon/index.tsx +1 -0
  353. package/src/components/Button/index.ts +2 -0
  354. package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +25 -0
  355. package/src/components/CollapsibleItem/CollapsibleItem.tsx +47 -0
  356. package/src/components/CollapsibleItem/index.ts +1 -0
  357. package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +15 -0
  358. package/src/components/DataTable/DataListing.tsx +6 -0
  359. package/src/components/DataTable/DataTable.cypress.spec.tsx +193 -0
  360. package/src/components/DataTable/DataTable.stories.tsx +91 -0
  361. package/src/components/DataTable/DataTable.styles.ts +30 -0
  362. package/src/components/DataTable/DataTable.tsx +35 -0
  363. package/src/components/DataTable/EmptyState/DataTableEmptyState.stories.tsx +21 -0
  364. package/src/components/DataTable/EmptyState/DataTableEmptyState.styles.ts +26 -0
  365. package/src/components/DataTable/EmptyState/DataTableEmptyState.tsx +53 -0
  366. package/src/components/DataTable/Item/DataTableItem.stories.tsx +25 -0
  367. package/src/components/DataTable/Item/DataTableItem.styles.ts +38 -0
  368. package/src/components/DataTable/Item/DataTableItem.tsx +123 -0
  369. package/src/components/DataTable/Item/DataTableItemSkeleton.tsx +13 -0
  370. package/src/components/DataTable/index.ts +12 -0
  371. package/src/components/Form/AccessRights/AccessRights.resource.ts +45 -0
  372. package/src/components/Form/AccessRights/AccessRightsForm.stories.tsx +59 -0
  373. package/src/components/Form/AccessRights/AccessRightsForm.styles.ts +21 -0
  374. package/src/components/Form/AccessRights/AccessRightsForm.tsx +67 -0
  375. package/src/components/Form/AccessRights/AccessRightsFormActions.tsx +80 -0
  376. package/src/components/Form/AccessRights/Input/AddAction.tsx +31 -0
  377. package/src/components/Form/AccessRights/Input/ContactAccessRightInput.stories.tsx +54 -0
  378. package/src/components/Form/AccessRights/Input/ContactAccessRightInput.tsx +72 -0
  379. package/src/components/Form/AccessRights/Input/ContactAccessRightsInput.styles.ts +22 -0
  380. package/src/components/Form/AccessRights/Input/ContactInputField.tsx +105 -0
  381. package/src/components/Form/AccessRights/Input/RoleInputField.tsx +29 -0
  382. package/src/components/Form/AccessRights/List/ContactAccessRightsList.stories.tsx +97 -0
  383. package/src/components/Form/AccessRights/List/ContactAccessRightsList.styles.ts +71 -0
  384. package/src/components/Form/AccessRights/List/ContactAccessRightsList.tsx +51 -0
  385. package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.stories.tsx +116 -0
  386. package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.tsx +118 -0
  387. package/src/components/Form/AccessRights/List/ContactAccessRightsListItemSkeleton.tsx +26 -0
  388. package/src/components/Form/AccessRights/List/ContactAccessRightsListSkeleton.tsx +28 -0
  389. package/src/components/Form/AccessRights/Stats/AccessRightsStats.styles.ts +18 -0
  390. package/src/components/Form/AccessRights/Stats/AccessRightsStats.tsx +41 -0
  391. package/src/components/Form/AccessRights/__fixtures__/contactAccessRight.mock.ts +54 -0
  392. package/src/components/Form/AccessRights/common/GroupLabel.styles.ts +18 -0
  393. package/src/components/Form/AccessRights/common/GroupLabel.tsx +15 -0
  394. package/src/components/Form/AccessRights/common/Input.styles.ts +48 -0
  395. package/src/components/Form/AccessRights/common/RoleInputSelect.styles.ts +11 -0
  396. package/src/components/Form/AccessRights/common/RoleInputSelect.tsx +57 -0
  397. package/src/components/Form/AccessRights/index.ts +3 -0
  398. package/src/components/Form/AccessRights/useAccessRightsForm.test.tsx +531 -0
  399. package/src/components/Form/AccessRights/useAccessRightsForm.tsx +282 -0
  400. package/src/components/Form/AccessRights/useAccessRightsForm.utils.ts +41 -0
  401. package/src/components/Form/AccessRightsV2/AccessRights.cypress.spec.tsx +350 -0
  402. package/src/components/Form/AccessRightsV2/AccessRights.stories.tsx +119 -0
  403. package/src/components/Form/AccessRightsV2/AccessRights.styles.ts +10 -0
  404. package/src/components/Form/AccessRightsV2/AccessRights.tsx +60 -0
  405. package/src/components/Form/AccessRightsV2/Actions/Actions.styles.ts +14 -0
  406. package/src/components/Form/AccessRightsV2/Actions/Actions.tsx +81 -0
  407. package/src/components/Form/AccessRightsV2/Actions/useActions.ts +79 -0
  408. package/src/components/Form/AccessRightsV2/List/Item.tsx +90 -0
  409. package/src/components/Form/AccessRightsV2/List/List.styles.tsx +45 -0
  410. package/src/components/Form/AccessRightsV2/List/List.tsx +52 -0
  411. package/src/components/Form/AccessRightsV2/List/ListItemSkeleton.tsx +18 -0
  412. package/src/components/Form/AccessRightsV2/List/ListSkeleton.tsx +22 -0
  413. package/src/components/Form/AccessRightsV2/List/RemoveAccessRight.tsx +38 -0
  414. package/src/components/Form/AccessRightsV2/List/StateChip.tsx +28 -0
  415. package/src/components/Form/AccessRightsV2/List/useItem.ts +64 -0
  416. package/src/components/Form/AccessRightsV2/Provider.tsx +15 -0
  417. package/src/components/Form/AccessRightsV2/ShareInput/ContactSwitch.tsx +42 -0
  418. package/src/components/Form/AccessRightsV2/ShareInput/ShareInput.styles.ts +9 -0
  419. package/src/components/Form/AccessRightsV2/ShareInput/ShareInput.tsx +77 -0
  420. package/src/components/Form/AccessRightsV2/ShareInput/useShareInput.tsx +109 -0
  421. package/src/components/Form/AccessRightsV2/Stats/Stats.tsx +36 -0
  422. package/src/components/Form/AccessRightsV2/atoms.ts +97 -0
  423. package/src/components/Form/AccessRightsV2/common/RoleSelectField.styles.tsx +7 -0
  424. package/src/components/Form/AccessRightsV2/common/RoleSelectField.tsx +45 -0
  425. package/src/components/Form/AccessRightsV2/models.ts +54 -0
  426. package/src/components/Form/AccessRightsV2/storiesData.ts +221 -0
  427. package/src/components/Form/AccessRightsV2/useAccessRightsInitValues.ts +51 -0
  428. package/src/components/Form/Dashboard/Dashboard.resource.ts +9 -0
  429. package/src/components/Form/Dashboard/DashboardForm.stories.ts +39 -0
  430. package/src/components/Form/Dashboard/DashboardForm.styles.ts +21 -0
  431. package/src/components/Form/Dashboard/DashboardForm.tsx +137 -0
  432. package/src/components/Form/Dashboard/GlobalRefreshFieldOption.tsx +59 -0
  433. package/src/components/Form/Dashboard/index.ts +2 -0
  434. package/src/components/Form/Dashboard/translatedLabels.ts +9 -0
  435. package/src/components/Form/Form.models.ts +1 -0
  436. package/src/components/Form/Form.resource.ts +1 -0
  437. package/src/components/Form/Form.styles.ts +17 -0
  438. package/src/components/Form/FormActions.tsx +57 -0
  439. package/src/components/Form/index.ts +4 -0
  440. package/src/components/Header/PageHeader/PageHeader.stories.tsx +97 -0
  441. package/src/components/Header/PageHeader/PageHeader.styles.ts +126 -0
  442. package/src/components/Header/PageHeader/PageHeader.tsx +15 -0
  443. package/src/components/Header/PageHeader/PageHeaderActions.tsx +17 -0
  444. package/src/components/Header/PageHeader/PageHeaderMain.tsx +15 -0
  445. package/src/components/Header/PageHeader/PageHeaderMenu.tsx +15 -0
  446. package/src/components/Header/PageHeader/PageHeaderMessage.tsx +32 -0
  447. package/src/components/Header/PageHeader/PageHeaderTitle.tsx +47 -0
  448. package/src/components/Header/PageHeader/index.ts +14 -0
  449. package/src/components/Header/index.ts +1 -0
  450. package/src/components/Icon/Icon.styles.ts +0 -0
  451. package/src/components/Icon/Icon.tsx +2 -0
  452. package/src/components/Icon/index.ts +0 -0
  453. package/src/components/Inputs/Switch/Switch.stories.tsx +22 -0
  454. package/src/components/Inputs/Switch/Switch.styles.ts +13 -0
  455. package/src/components/Inputs/Switch/Switch.tsx +18 -0
  456. package/src/components/Inputs/index.ts +1 -0
  457. package/src/components/ItemComposition/Item.tsx +41 -0
  458. package/src/components/ItemComposition/ItemComposition.stories.tsx +78 -0
  459. package/src/components/ItemComposition/ItemComposition.styles.ts +29 -0
  460. package/src/components/ItemComposition/ItemComposition.tsx +47 -0
  461. package/src/components/ItemComposition/index.ts +6 -0
  462. package/src/components/Layout/AreaIndicator.styles.ts +33 -0
  463. package/src/components/Layout/AreaIndicator.tsx +35 -0
  464. package/src/components/Layout/PageLayout/PageLayout.stories.tsx +81 -0
  465. package/src/components/Layout/PageLayout/PageLayout.styles.ts +41 -0
  466. package/src/components/Layout/PageLayout/PageLayout.tsx +21 -0
  467. package/src/components/Layout/PageLayout/PageLayoutActions.tsx +25 -0
  468. package/src/components/Layout/PageLayout/PageLayoutBody.tsx +25 -0
  469. package/src/components/Layout/PageLayout/PageLayoutHeader.tsx +19 -0
  470. package/src/components/Layout/PageLayout/PageQuickAccess.tsx +76 -0
  471. package/src/components/Layout/PageLayout/index.ts +12 -0
  472. package/src/components/Layout/PageLayout.cypress.spec.tsx +66 -0
  473. package/src/components/Layout/index.ts +1 -0
  474. package/src/components/List/Item/Avatar.tsx +21 -0
  475. package/src/components/List/Item/AvatarSkeleton.tsx +17 -0
  476. package/src/components/List/Item/ListItem.stories.tsx +41 -0
  477. package/src/components/List/Item/ListItem.styles.ts +63 -0
  478. package/src/components/List/Item/ListItem.tsx +34 -0
  479. package/src/components/List/Item/Text.tsx +27 -0
  480. package/src/components/List/Item/TextSkeleton.tsx +22 -0
  481. package/src/components/List/Item/index.ts +14 -0
  482. package/src/components/List/List.stories.tsx +70 -0
  483. package/src/components/List/List.styles.ts +8 -0
  484. package/src/components/List/List.tsx +19 -0
  485. package/src/components/List/index.ts +6 -0
  486. package/src/components/Menu/Button/MenuButton.stories.tsx +16 -0
  487. package/src/components/Menu/Button/MenuButton.styles.ts +27 -0
  488. package/src/components/Menu/Button/MenuButton.tsx +67 -0
  489. package/src/components/Menu/Button/index.ts +1 -0
  490. package/src/components/Menu/Menu.stories.tsx +71 -0
  491. package/src/components/Menu/Menu.styles.ts +68 -0
  492. package/src/components/Menu/Menu.tsx +25 -0
  493. package/src/components/Menu/MenuDivider.tsx +13 -0
  494. package/src/components/Menu/MenuItem.tsx +38 -0
  495. package/src/components/Menu/MenuItems.tsx +36 -0
  496. package/src/components/Menu/index.ts +12 -0
  497. package/src/components/Menu/useMenu.tsx +79 -0
  498. package/src/components/Modal/Modal.stories.tsx +142 -0
  499. package/src/components/Modal/Modal.styles.ts +91 -0
  500. package/src/components/Modal/Modal.tsx +79 -0
  501. package/src/components/Modal/ModalActions.tsx +64 -0
  502. package/src/components/Modal/ModalBody.tsx +15 -0
  503. package/src/components/Modal/ModalHeader.tsx +21 -0
  504. package/src/components/Modal/index.ts +12 -0
  505. package/src/components/README.md +3 -0
  506. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +62 -0
  507. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.styles.tsx +22 -0
  508. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +68 -0
  509. package/src/components/Tooltip/ConfirmationTooltip/TooltipContent.tsx +31 -0
  510. package/src/components/Tooltip/ConfirmationTooltip/index.ts +1 -0
  511. package/src/components/Tooltip/ConfirmationTooltip/models.ts +18 -0
  512. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.stories.tsx +70 -0
  513. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.styles.ts +5 -0
  514. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.tsx +115 -0
  515. package/src/components/Tooltip/TextOverflowTooltip/index.tsx +1 -0
  516. package/src/components/Tooltip/Tooltip.stories.tsx +41 -0
  517. package/src/components/Tooltip/Tooltip.tsx +57 -0
  518. package/src/components/Tooltip/index.ts +2 -0
  519. package/src/components/index.ts +13 -0
  520. package/src/index.ts +31 -21
  521. package/src/queryParameters/url/index.ts +5 -1
  522. package/src/styles/tokens/themes/_ui-dark.tokens.json +695 -0
  523. package/src/styles/tokens/themes/_ui-light.tokens.json +695 -0
  524. package/src/utils/centreonBaseURL.ts +4 -0
  525. package/src/utils/docsURL.ts +31 -0
  526. package/src/utils/getNormalizedId.ts +1 -3
  527. package/src/utils/index.ts +22 -0
  528. package/src/utils/panelSize.ts +15 -0
  529. package/src/utils/sanitizedHTML.ts +18 -0
  530. package/src/utils/translatedLabel.ts +2 -0
  531. package/src/utils/useCopyToClipboard.ts +2 -3
  532. package/src/utils/useDebounce.ts +8 -5
  533. package/src/utils/useDeepCallback.ts +1 -3
  534. package/src/utils/useDeepMemo.ts +1 -3
  535. package/src/utils/useInfiniteScrollListing.ts +121 -0
  536. package/src/utils/useIntersectionObserver.ts +5 -5
  537. package/src/utils/useKeyObserver.tsx +1 -3
  538. package/src/utils/useLicenseExpirationWarning.test.tsx +148 -0
  539. package/src/utils/useLicenseExpirationWarning.ts +52 -0
  540. package/src/utils/useLocaleDateTimeFormat/index.test.tsx +1 -1
  541. package/src/utils/useLocaleDateTimeFormat/index.ts +4 -2
  542. package/src/utils/useLocaleDateTimeFormat/localeFallback.test.tsx +1 -1
  543. package/src/utils/useMemoComponent.ts +1 -1
  544. package/src/utils/usePluralizedTranslation.ts +21 -0
  545. package/src/utils/useRefreshInterval.ts +39 -0
  546. package/src/utils/useResizeObserver.ts +6 -0
  547. package/src/utils/useThresholds.ts +0 -0
  548. package/{setupTests.js → test/setupTests.js} +1 -1
  549. package/{src → test}/testRenderer.tsx +1 -1
  550. package/.storybook/main.js +0 -82
  551. package/.storybook/preview.tsx +0 -21
  552. package/jest.config.js +0 -20
  553. package/src/Listing/Header/SortableCell/DraggableIcon.tsx +0 -41
  554. package/src/Listing/Skeleton.tsx +0 -11
  555. package/src/storyshots.test.js +0 -52
  556. package/testRunner.js +0 -36
  557. package/tsconfig.json +0 -29
  558. package/types/declarations.d.ts +0 -9
  559. /package/{assets → public/brand}/centreon-logo-one-line-dark.svg +0 -0
  560. /package/{assets → public/brand}/centreon-logo-one-line-light.svg +0 -0
  561. /package/{fonts/fonts-generated → public/fonts}/roboto-bold-webfont.ttf +0 -0
  562. /package/{fonts/fonts-generated → public/fonts}/roboto-bold-webfont.woff +0 -0
  563. /package/{fonts/fonts-generated → public/fonts}/roboto-bold-webfont.woff2 +0 -0
  564. /package/{fonts/fonts-generated → public/fonts}/roboto-light-webfont.ttf +0 -0
  565. /package/{fonts/fonts-generated → public/fonts}/roboto-light-webfont.woff +0 -0
  566. /package/{fonts/fonts-generated → public/fonts}/roboto-light-webfont.woff2 +0 -0
  567. /package/{fonts/fonts-generated → public/fonts}/roboto-medium-webfont.ttf +0 -0
  568. /package/{fonts/fonts-generated → public/fonts}/roboto-medium-webfont.woff +0 -0
  569. /package/{fonts/fonts-generated → public/fonts}/roboto-medium-webfont.woff2 +0 -0
  570. /package/{fonts/fonts-generated → public/fonts}/roboto-regular-webfont.ttf +0 -0
  571. /package/{fonts/fonts-generated → public/fonts}/roboto-regular-webfont.woff +0 -0
  572. /package/{fonts/fonts-generated → public/fonts}/roboto-regular-webfont.woff2 +0 -0
  573. /package/{assets → src/@assets/images}/not-authorized-template-background-dark.svg +0 -0
  574. /package/{assets → src/@assets/images}/not-authorized-template-background-light.svg +0 -0
  575. /package/src/Listing/Header/{Label.tsx → _internals/Label.tsx} +0 -0
  576. /package/src/Typography/{index.tsx → story.utils.tsx} +0 -0
@@ -0,0 +1,1326 @@
1
+ {
2
+ "global": {
3
+ "title": "oracle-buffer-hit-ratio graph on srv-oracle-users",
4
+ "start": "2023-06-18T17:04:46+02:00",
5
+ "end": "2023-06-19T17:04:46+02:00",
6
+ "vertical-label": "Value",
7
+ "base": 1000,
8
+ "width": 550,
9
+ "height": 140,
10
+ "scaled": 0,
11
+ "multiple_services": false
12
+ },
13
+ "metrics": [
14
+ {
15
+ "index_id": 5614,
16
+ "metric_id": 13536,
17
+ "metric": "connTime",
18
+ "metric_legend": "connTime",
19
+ "unit": "s",
20
+ "hidden": 0,
21
+ "min": null,
22
+ "max": null,
23
+ "virtual": 0,
24
+ "ds_data": {
25
+ "ds_min": "1",
26
+ "ds_max": "1",
27
+ "ds_minmax_int": "0",
28
+ "ds_last": "1",
29
+ "ds_average": "1",
30
+ "ds_total": "0",
31
+ "ds_tickness": 1,
32
+ "ds_color_line_mode": "1",
33
+ "ds_color_line": "#6699cc"
34
+ },
35
+ "legend": "connTime",
36
+ "stack": 0,
37
+ "warn": null,
38
+ "warn_low": null,
39
+ "crit": null,
40
+ "crit_low": null,
41
+ "ds_color_area_warn": "#ff9a13",
42
+ "ds_color_area_crit": "#e00b3d",
43
+ "ds_order": 0,
44
+ "data": [
45
+ 0.53123333333,
46
+ 0.56452,
47
+ 0.5341,
48
+ 0.51537666667,
49
+ 0.25730333333,
50
+ 0.48611333333,
51
+ 0.41435666667,
52
+ 0.42371,
53
+ 0.55438333333,
54
+ 0.60211,
55
+ 0.72619,
56
+ 0.67167333333,
57
+ 0.63883333333,
58
+ 0.52027666667,
59
+ 0.67368666667,
60
+ 0.83443333333,
61
+ 0.86102333333,
62
+ 0.76291666667,
63
+ 0.39081666667,
64
+ 0.22492333333,
65
+ 0.64388333333,
66
+ 0.81007666667,
67
+ 0.61811333333,
68
+ 0.58901,
69
+ 0.58737333333,
70
+ 0.60651333333,
71
+ 0.74783333333,
72
+ 0.92823,
73
+ 0.89503333333,
74
+ 0.82551333333,
75
+ 0.75017333333,
76
+ 0.33549666667,
77
+ 0.40213666667,
78
+ 0.60645666667,
79
+ 0.55312666667,
80
+ 0.31503666667,
81
+ 0.078203333333,
82
+ 0.44113,
83
+ 0.35953666667,
84
+ 0.41073333333,
85
+ 0.8358,
86
+ 0.86683333333,
87
+ 0.68390666667,
88
+ 0.28047333333,
89
+ 0.0607,
90
+ 0.49994666667,
91
+ 0.75459666667,
92
+ 0.51677333333,
93
+ 0.63137,
94
+ 0.74141666667,
95
+ 0.60566666667,
96
+ 0.32040666667,
97
+ 0.15528666667,
98
+ 0.43645333333,
99
+ 0.65261666667,
100
+ 0.46921666667,
101
+ 0.60091666667,
102
+ 0.47360333333,
103
+ 0.10643,
104
+ 0.29183,
105
+ 0.35995,
106
+ 0.40254333333,
107
+ 0.58827666667,
108
+ 0.45241333333,
109
+ 0.24455333333,
110
+ 0.18674,
111
+ 0.13640333333,
112
+ 0.34897666667,
113
+ 0.55044,
114
+ 0.52277666667,
115
+ 0.69064333333,
116
+ 0.56236333333,
117
+ 0.39762,
118
+ 0.65475666667,
119
+ 0.58477,
120
+ 0.49433,
121
+ 0.28894333333,
122
+ 0.49294333333,
123
+ 0.64683,
124
+ 0.35607666667,
125
+ 0.55465,
126
+ 0.45637333333,
127
+ 0.54171666667,
128
+ 0.42502666667,
129
+ 0.30588,
130
+ 0.32094,
131
+ 0.22269333333,
132
+ 0.44262,
133
+ 0.62073333333,
134
+ 0.60227666667,
135
+ 0.32498333333,
136
+ 0.25148,
137
+ 0.47383333333,
138
+ 0.30778333333,
139
+ 0.26413666667,
140
+ 0.58817,
141
+ 0.42611,
142
+ 0.44147,
143
+ 0.70327,
144
+ 0.61590333333,
145
+ 0.67324333333,
146
+ 0.71732333333,
147
+ 0.38394,
148
+ 0.23022,
149
+ 0.32007333333,
150
+ 0.37968,
151
+ 0.32084666667,
152
+ 0.54738333333,
153
+ 0.85402666667,
154
+ 0.72061666667,
155
+ 0.69251666667,
156
+ 0.87611666667,
157
+ 0.83591333333,
158
+ 0.36148,
159
+ 0.45470333333,
160
+ 0.68843,
161
+ 0.52516,
162
+ 0.50904666667,
163
+ 0.51209333333,
164
+ 0.6553,
165
+ 0.85674333333,
166
+ 0.51166,
167
+ 0.4353,
168
+ 0.76875333333,
169
+ 0.78365666667,
170
+ 0.71250666667,
171
+ 0.81178666667,
172
+ 0.67356666667,
173
+ 0.48919333333,
174
+ 0.55755,
175
+ 0.50259333333,
176
+ 0.28751333333,
177
+ 0.56895666667,
178
+ 0.46348666667,
179
+ 0.065866666667,
180
+ 0.56505666667,
181
+ 0.90545333333,
182
+ 0.80578666667,
183
+ 0.5926,
184
+ 0.60521333333,
185
+ 0.80492333333,
186
+ 0.46766666667,
187
+ 0.45899,
188
+ 0.67702333333,
189
+ 0.35113666667,
190
+ 0.47643666667,
191
+ 0.71041666667,
192
+ 0.55792,
193
+ 0.73992,
194
+ 0.76518,
195
+ 0.35002333333,
196
+ 0.26003,
197
+ 0.55407333333,
198
+ 0.76546333333,
199
+ 0.37679,
200
+ 0.067946666667,
201
+ 0.34679,
202
+ 0.26,
203
+ 0.66257333333,
204
+ 0.40848,
205
+ 0.53458333333,
206
+ 0.51552,
207
+ 0.61109,
208
+ 0.85858333333,
209
+ 0.68362,
210
+ 0.27503333333,
211
+ 0.2019,
212
+ 0.13221333333,
213
+ 0.79457,
214
+ 0.69949666667,
215
+ 0.35275333333,
216
+ 0.81529,
217
+ 0.078553333333,
218
+ 0.03339,
219
+ 0.39325333333,
220
+ 0.40176333333,
221
+ 0.14054333333,
222
+ 0.32028666667,
223
+ 0.33053666667,
224
+ 0.89415666667,
225
+ 0.35837666667,
226
+ 0.85846,
227
+ 0.44418,
228
+ 0.29612333333,
229
+ 0.84746333333,
230
+ 0.69179,
231
+ 0.15608666667,
232
+ 0.46017333333,
233
+ 0.52039333333,
234
+ 0.04379,
235
+ 0.20713333333,
236
+ 0.69767,
237
+ 0.073123333333,
238
+ 0.72342666667,
239
+ 0.16706,
240
+ 0.56104666667,
241
+ 0.7642,
242
+ 0.84448,
243
+ 0.12149,
244
+ 0.84398666667,
245
+ 0.17495,
246
+ 0.73171,
247
+ 0.31948666667,
248
+ 0.86547,
249
+ 0.51050333333,
250
+ 0.73184,
251
+ 0.24332,
252
+ 0.64512333333,
253
+ 0.87497666667,
254
+ 0.64631666667,
255
+ 0.93808666667,
256
+ 0.40630666667,
257
+ 0.58898666667,
258
+ 0.079853333333,
259
+ 0.52536666667,
260
+ 0.24560333333,
261
+ 0.08881,
262
+ 0.59968333333,
263
+ 0.76672666667,
264
+ 0.12605,
265
+ 0.57891,
266
+ 0.3994,
267
+ 0.93223,
268
+ 0.91706,
269
+ 0.73287333333,
270
+ 0.35697666667,
271
+ 0.76189,
272
+ 0.53946666667,
273
+ 0.80423333333,
274
+ 0.89725,
275
+ 0.11539666667,
276
+ 0.29745333333,
277
+ 0.77966666667,
278
+ 0.71089333333,
279
+ 0.26618666667,
280
+ 0.66581333333,
281
+ 0.72693,
282
+ 0.2858,
283
+ 0.21299,
284
+ 0.19799666667,
285
+ 0.73068666667,
286
+ 0.48692,
287
+ 0.5738,
288
+ 0.060393333333,
289
+ 0.36694333333,
290
+ 0.29905,
291
+ 0.70373,
292
+ 0.59026666667,
293
+ 0.95010333333,
294
+ 0.96899666667,
295
+ 0.18778333333,
296
+ 0.44893666667,
297
+ 0.54063333333,
298
+ 0.30962666667,
299
+ 0.67226,
300
+ 0.8979,
301
+ 0.61484,
302
+ 0.75435333333,
303
+ 0.21677,
304
+ 0.25687,
305
+ 0.73120666667,
306
+ 0.20676666667,
307
+ 0.32435333333,
308
+ 0.44787666667,
309
+ 0.89004333333,
310
+ 0.48926333333,
311
+ 0.36620666667,
312
+ 0.53720333333,
313
+ 0.77175333333,
314
+ 0.81031333333,
315
+ 0.68735,
316
+ 0.29566333333,
317
+ 0.64441333333,
318
+ 0.53196,
319
+ 0.57447666667,
320
+ 0.050853333333,
321
+ 0.28769333333,
322
+ 0.17988666667,
323
+ 0.10621333333,
324
+ 0.49249333333,
325
+ 0.81975,
326
+ 0.48222,
327
+ 0.25617333333,
328
+ 0.75395,
329
+ 0.36961,
330
+ 0.53932333333,
331
+ 0.65789666667,
332
+ 0.32339333333,
333
+ null
334
+ ],
335
+ "prints": [
336
+ [
337
+ "Last:0.32"
338
+ ],
339
+ [
340
+ "Min:0.03"
341
+ ],
342
+ [
343
+ "Max:0.97"
344
+ ],
345
+ [
346
+ "Average:0.51"
347
+ ]
348
+ ],
349
+ "last_value": 0.32,
350
+ "minimum_value": 0.03,
351
+ "maximum_value": 0.97,
352
+ "average_value": 0.51
353
+ },
354
+ {
355
+ "index_id": 5614,
356
+ "metric_id": 13534,
357
+ "metric": "hitratio",
358
+ "metric_legend": "hitratio",
359
+ "unit": "%",
360
+ "hidden": 0,
361
+ "min": null,
362
+ "max": null,
363
+ "virtual": 0,
364
+ "ds_data": {
365
+ "ds_min": "1",
366
+ "ds_max": "1",
367
+ "ds_minmax_int": "0",
368
+ "ds_last": "1",
369
+ "ds_average": "1",
370
+ "ds_total": "0",
371
+ "ds_tickness": 1,
372
+ "ds_color_line_mode": "1",
373
+ "ds_color_line": "#cc9999"
374
+ },
375
+ "legend": "hitratio",
376
+ "stack": 0,
377
+ "warn": null,
378
+ "warn_low": null,
379
+ "crit": null,
380
+ "crit_low": null,
381
+ "ds_color_area_warn": "#ff9a13",
382
+ "ds_color_area_crit": "#e00b3d",
383
+ "ds_order": 0,
384
+ "data": [
385
+ 80.192446667,
386
+ 80.324963333,
387
+ 80.31374,
388
+ 80.043863333,
389
+ 78.97382,
390
+ 78.01196,
391
+ 77.85379,
392
+ 77.311446667,
393
+ 77.518806667,
394
+ 77.363833333,
395
+ 76.410303333,
396
+ 75.385206667,
397
+ 75.470793333,
398
+ 75.444866667,
399
+ 74.902366667,
400
+ 74.787096667,
401
+ 73.424696667,
402
+ 72.984073333,
403
+ 73.127803333,
404
+ 72.06457,
405
+ 71.092996667,
406
+ 70.652853333,
407
+ 72.838793333,
408
+ 74.3249,
409
+ 74.690726667,
410
+ 75.462586667,
411
+ 74.87943,
412
+ 75.429203333,
413
+ 76.836436667,
414
+ 77.9801,
415
+ 78.159586667,
416
+ 77.133953333,
417
+ 76.139193333,
418
+ 76.100923333,
419
+ 75.977446667,
420
+ 75.897756667,
421
+ 75.158033333,
422
+ 73.702993333,
423
+ 72.387816667,
424
+ 71.130253333,
425
+ 70.39241,
426
+ 71.103633333,
427
+ 71.842186667,
428
+ 72.052586667,
429
+ 71.766026667,
430
+ 71.548363333,
431
+ 71.128753333,
432
+ 72.8407,
433
+ 74.584996667,
434
+ 73.229936667,
435
+ 71.78108,
436
+ 71.673396667,
437
+ 71.184396667,
438
+ 70.4531,
439
+ 70.344756667,
440
+ 72.715336667,
441
+ 74.256866667,
442
+ 73.24873,
443
+ 73.652976667,
444
+ 75.191423333,
445
+ 75.63962,
446
+ 74.709446667,
447
+ 74.725396667,
448
+ 75.930556667,
449
+ 77.090426667,
450
+ 77.774146667,
451
+ 78.34251,
452
+ 79.083023333,
453
+ 79.19294,
454
+ 79.902196667,
455
+ 80.164726667,
456
+ 79.28103,
457
+ 78.529063333,
458
+ 77.409276667,
459
+ 75.7148,
460
+ 75.432493333,
461
+ 76.331206667,
462
+ 76.05935,
463
+ 76.290816667,
464
+ 76.174896667,
465
+ 74.520766667,
466
+ 74.641866667,
467
+ 75.632723333,
468
+ 75.710626667,
469
+ 74.692966667,
470
+ 73.84993,
471
+ 73.685023333,
472
+ 73.59346,
473
+ 73.485723333,
474
+ 74.233233333,
475
+ 76.036953333,
476
+ 77.343543333,
477
+ 77.40446,
478
+ 77.324593333,
479
+ 77.389233333,
480
+ 76.69522,
481
+ 75.906923333,
482
+ 75.531203333,
483
+ 75.230936667,
484
+ 74.892196667,
485
+ 75.257436667,
486
+ 76.047326667,
487
+ 76.83612,
488
+ 76.4245,
489
+ 74.62692,
490
+ 73.454276667,
491
+ 73.838346667,
492
+ 74.91667,
493
+ 75.654806667,
494
+ 75.07332,
495
+ 73.51074,
496
+ 72.497866667,
497
+ 72.15109,
498
+ 71.317343333,
499
+ 71.56787,
500
+ 72.18692,
501
+ 71.37498,
502
+ 70.426836667,
503
+ 70.611836667,
504
+ 71.692516667,
505
+ 72.545326667,
506
+ 71.79552,
507
+ 70.463443333,
508
+ 70.393413333,
509
+ 72.92507,
510
+ 75.238116667,
511
+ 74.41566,
512
+ 72.43751,
513
+ 70.750156667,
514
+ 70.50232,
515
+ 73.044236667,
516
+ 75.752553333,
517
+ 76.848816667,
518
+ 77.010526667,
519
+ 77.599906667,
520
+ 77.768733333,
521
+ 77.314866667,
522
+ 77.01545,
523
+ 77.704426667,
524
+ 78.521463333,
525
+ 79.173236667,
526
+ 79.92521,
527
+ 80.769776667,
528
+ 82.234066667,
529
+ 83.11997,
530
+ 82.61005,
531
+ 82.86877,
532
+ 83.577323333,
533
+ 84.011146667,
534
+ 84.565116667,
535
+ 84.8117,
536
+ 85.159493333,
537
+ 84.523926667,
538
+ 83.279573333,
539
+ 82.95924,
540
+ 83.57027,
541
+ 84.89847,
542
+ 83.853206667,
543
+ 84.676703333,
544
+ 86.10003,
545
+ 85.350266667,
546
+ 84.94219,
547
+ 85.116616667,
548
+ 84.75833,
549
+ 83.948586667,
550
+ 83.637406667,
551
+ 83.2102,
552
+ 82.458723333,
553
+ 82.4267,
554
+ 83.49822,
555
+ 83.83907,
556
+ 82.507316667,
557
+ 82.858513333,
558
+ 84.26815,
559
+ 83.920333333,
560
+ 84.255026667,
561
+ 82.74865,
562
+ 82.445566667,
563
+ 81.86038,
564
+ 80.631133333,
565
+ 81.62438,
566
+ 81.23579,
567
+ 80.95778,
568
+ 79.499446667,
569
+ 78.88417,
570
+ 78.406263333,
571
+ 76.631363333,
572
+ 75.627376667,
573
+ 75.485826667,
574
+ 73.82354,
575
+ 72.111716667,
576
+ 70.308843333,
577
+ 74.6297,
578
+ 75.690653333,
579
+ 74.810816667,
580
+ 75.50583,
581
+ 76.246803333,
582
+ 77.157083333,
583
+ 77.98975,
584
+ 77.812933333,
585
+ 77.722826667,
586
+ 79.01059,
587
+ 79.221413333,
588
+ 80.305683333,
589
+ 80.499336667,
590
+ 78.993733333,
591
+ 80.18652,
592
+ 81.94138,
593
+ 83.55718,
594
+ 82.897013333,
595
+ 82.29185,
596
+ 81.54342,
597
+ 82.708416667,
598
+ 83.576366667,
599
+ 83.04722,
600
+ 83.864086667,
601
+ 83.699626667,
602
+ 82.20913,
603
+ 81.32802,
604
+ 79.87446,
605
+ 79.22439,
606
+ 77.4626,
607
+ 78.31997,
608
+ 76.586803333,
609
+ 77.81823,
610
+ 77.163863333,
611
+ 77.913456667,
612
+ 79.026213333,
613
+ 77.37621,
614
+ 78.781353333,
615
+ 79.298723333,
616
+ 78.798236667,
617
+ 79.785363333,
618
+ 80.425,
619
+ 81.082246667,
620
+ 82.75068,
621
+ 83.45285,
622
+ 82.340293333,
623
+ 82.654883333,
624
+ 82.498793333,
625
+ 81.795116667,
626
+ 82.371406667,
627
+ 80.786006667,
628
+ 79.975043333,
629
+ 80.537633333,
630
+ 78.944543333,
631
+ 77.60028,
632
+ 76.822273333,
633
+ 75.409623333,
634
+ 74.17238,
635
+ 75.874883333,
636
+ 77.656453333,
637
+ 76.133693333,
638
+ 75.23148,
639
+ 76.698886667,
640
+ 76.538843333,
641
+ 77.68948,
642
+ 77.99752,
643
+ 79.06483,
644
+ 79.920213333,
645
+ 80.295163333,
646
+ 82.13812,
647
+ 81.25856,
648
+ 79.891413333,
649
+ 80.126633333,
650
+ 79.632393333,
651
+ 81.009086667,
652
+ 81.655146667,
653
+ 82.30286,
654
+ 83.57457,
655
+ 83.236493333,
656
+ 83.495466667,
657
+ 82.422156667,
658
+ 82.68833,
659
+ 83.218446667,
660
+ 84.335683333,
661
+ 85.520996667,
662
+ 85.508586667,
663
+ 85.91827,
664
+ 84.19682,
665
+ 86.29191,
666
+ 87.191866667,
667
+ 87.270053333,
668
+ 88.025836667,
669
+ 87.42611,
670
+ 86.863723333,
671
+ 86.564723333,
672
+ 87.268263333,
673
+ null
674
+ ],
675
+ "prints": [
676
+ [
677
+ "Last:87.27"
678
+ ],
679
+ [
680
+ "Min:70.31"
681
+ ],
682
+ [
683
+ "Max:88.03"
684
+ ],
685
+ [
686
+ "Average:78.07"
687
+ ]
688
+ ],
689
+ "last_value": 87.27,
690
+ "minimum_value": 70.31,
691
+ "maximum_value": 88.03,
692
+ "average_value": 78.07
693
+ },
694
+ {
695
+ "index_id": 5614,
696
+ "metric_id": 13535,
697
+ "metric": "querytime",
698
+ "metric_legend": "querytime",
699
+ "unit": "s",
700
+ "hidden": 0,
701
+ "min": null,
702
+ "max": null,
703
+ "virtual": 0,
704
+ "ds_data": {
705
+ "ds_min": "1",
706
+ "ds_max": "1",
707
+ "ds_minmax_int": "0",
708
+ "ds_last": "1",
709
+ "ds_average": "1",
710
+ "ds_total": "0",
711
+ "ds_tickness": 1,
712
+ "ds_color_line_mode": "1",
713
+ "ds_color_line": "#00ffcc"
714
+ },
715
+ "legend": "querytime",
716
+ "stack": 0,
717
+ "warn": null,
718
+ "warn_low": null,
719
+ "crit": null,
720
+ "crit_low": null,
721
+ "ds_color_area_warn": "#ff9a13",
722
+ "ds_color_area_crit": "#e00b3d",
723
+ "ds_order": 0,
724
+ "data": [
725
+ 0.29714333333,
726
+ 0.69919666667,
727
+ 0.79321666667,
728
+ 0.71506,
729
+ 0.5782,
730
+ 0.48894666667,
731
+ 0.67059333333,
732
+ 0.54513333333,
733
+ 0.63351666667,
734
+ 0.83608666667,
735
+ 0.5301,
736
+ 0.27967333333,
737
+ 0.37714333333,
738
+ 0.59969333333,
739
+ 0.48521,
740
+ 0.59266333333,
741
+ 0.53817,
742
+ 0.1465,
743
+ 0.16135,
744
+ 0.3028,
745
+ 0.19724333333,
746
+ 0.17198333333,
747
+ 0.33685666667,
748
+ 0.24265333333,
749
+ 0.34326666667,
750
+ 0.76181,
751
+ 0.73900333333,
752
+ 0.67112333333,
753
+ 0.59812333333,
754
+ 0.52067666667,
755
+ 0.77137333333,
756
+ 0.47664333333,
757
+ 0.046403333333,
758
+ 0.24118333333,
759
+ 0.53058333333,
760
+ 0.57370333333,
761
+ 0.47472333333,
762
+ 0.19977,
763
+ 0.44531,
764
+ 0.80133,
765
+ 0.3802,
766
+ 0.034383333333,
767
+ 0.23191333333,
768
+ 0.32398666667,
769
+ 0.22054333333,
770
+ 0.35904666667,
771
+ 0.24970666667,
772
+ 0.29793666667,
773
+ 0.69748666667,
774
+ 0.54007333333,
775
+ 0.28856,
776
+ 0.18591333333,
777
+ 0.28871666667,
778
+ 0.43670333333,
779
+ 0.31626666667,
780
+ 0.3028,
781
+ 0.47199333333,
782
+ 0.56091666667,
783
+ 0.39671,
784
+ 0.44483,
785
+ 0.61814,
786
+ 0.61943,
787
+ 0.71691,
788
+ 0.4302,
789
+ 0.11944666667,
790
+ 0.42061,
791
+ 0.39272666667,
792
+ 0.19695,
793
+ 0.16065,
794
+ 0.34680666667,
795
+ 0.39646,
796
+ 0.48262,
797
+ 0.40757,
798
+ 0.14027,
799
+ 0.29311333333,
800
+ 0.57186,
801
+ 0.76852,
802
+ 0.8357,
803
+ 0.90495,
804
+ 0.50284,
805
+ 0.46309,
806
+ 0.73553666667,
807
+ 0.41647333333,
808
+ 0.47040333333,
809
+ 0.79052,
810
+ 0.53166333333,
811
+ 0.46984666667,
812
+ 0.69507333333,
813
+ 0.81015333333,
814
+ 0.68305,
815
+ 0.44918,
816
+ 0.42194333333,
817
+ 0.44094333333,
818
+ 0.22025666667,
819
+ 0.48985,
820
+ 0.86948,
821
+ 0.89493,
822
+ 0.60076,
823
+ 0.20515333333,
824
+ 0.56671333333,
825
+ 0.53818333333,
826
+ 0.18702666667,
827
+ 0.56491333333,
828
+ 0.91616666667,
829
+ 0.48051333333,
830
+ 0.35035666667,
831
+ 0.78203666667,
832
+ 0.88262,
833
+ 0.69741,
834
+ 0.67662,
835
+ 0.55486333333,
836
+ 0.28368666667,
837
+ 0.46458333333,
838
+ 0.84172,
839
+ 0.71890333333,
840
+ 0.63952333333,
841
+ 0.87039666667,
842
+ 0.54808,
843
+ 0.56612666667,
844
+ 0.63758666667,
845
+ 0.37719666667,
846
+ 0.68918666667,
847
+ 0.88794,
848
+ 0.90652666667,
849
+ 0.97649666667,
850
+ 0.78016,
851
+ 0.36409,
852
+ 0.34504333333,
853
+ 0.60541666667,
854
+ 0.58179,
855
+ 0.70434333333,
856
+ 0.53593666667,
857
+ 0.53723333333,
858
+ 0.50562666667,
859
+ 0.36219666667,
860
+ 0.36345666667,
861
+ 0.61732333333,
862
+ 0.77207666667,
863
+ 0.30536333333,
864
+ 0.22801666667,
865
+ 0.30937,
866
+ 0.32652666667,
867
+ 0.50535,
868
+ 0.60912,
869
+ 0.50587666667,
870
+ 0.27743666667,
871
+ 0.51364333333,
872
+ 0.50690666667,
873
+ 0.15515333333,
874
+ 0.39111333333,
875
+ 0.4863,
876
+ 0.52368,
877
+ 0.34827333333,
878
+ 0.2388,
879
+ 0.57008333333,
880
+ 0.60963666667,
881
+ 0.73512333333,
882
+ 0.7397,
883
+ 0.89249666667,
884
+ 0.71656666667,
885
+ 0.53072,
886
+ 0.66387333333,
887
+ 0.61843,
888
+ 0.30160333333,
889
+ 0.74331,
890
+ 0.17412666667,
891
+ 0.83096666667,
892
+ 0.17164666667,
893
+ 0.12400333333,
894
+ 0.30874333333,
895
+ 0.31753666667,
896
+ 0.54321666667,
897
+ 0.24991333333,
898
+ 0.29325,
899
+ 0.87885333333,
900
+ 0.14124333333,
901
+ 0.22927333333,
902
+ 0.87817666667,
903
+ 0.73802333333,
904
+ 0.94914,
905
+ 0.86089333333,
906
+ 0.49467,
907
+ 0.076276666667,
908
+ 0.33023333333,
909
+ 0.68270666667,
910
+ 0.78202,
911
+ 0.64673,
912
+ 0.4965,
913
+ 0.21815666667,
914
+ 0.073196666667,
915
+ 0.34646333333,
916
+ 0.23888666667,
917
+ 0.79677333333,
918
+ 0.91694333333,
919
+ 0.80389,
920
+ 0.16613333333,
921
+ 0.10015,
922
+ 0.77488,
923
+ 0.90486666667,
924
+ 0.07169,
925
+ 0.72866333333,
926
+ 0.65142333333,
927
+ 0.41378333333,
928
+ 0.92684,
929
+ 0.66168333333,
930
+ 0.47534,
931
+ 0.73346,
932
+ 0.42083,
933
+ 0.23695666667,
934
+ 0.22677,
935
+ 0.08573,
936
+ 0.55321,
937
+ 0.80721333333,
938
+ 0.43997,
939
+ 0.22795,
940
+ 0.34503666667,
941
+ 0.73733666667,
942
+ 0.90842333333,
943
+ 0.88768333333,
944
+ 0.08724,
945
+ 0.25737333333,
946
+ 0.25853333333,
947
+ 0.27085,
948
+ 0.39665,
949
+ 0.34975333333,
950
+ 0.17418333333,
951
+ 0.90513,
952
+ 0.89959666667,
953
+ 0.65670333333,
954
+ 0.92508,
955
+ 0.49195,
956
+ 0.63128,
957
+ 0.15663333333,
958
+ 0.059676666667,
959
+ 0.11686333333,
960
+ 0.16909,
961
+ 0.33827666667,
962
+ 0.77581,
963
+ 0.43058666667,
964
+ 0.097993333333,
965
+ 0.090543333333,
966
+ 0.44194333333,
967
+ 0.12752,
968
+ 0.34368333333,
969
+ 0.90045666667,
970
+ 0.85451333333,
971
+ 0.13603333333,
972
+ 0.87106666667,
973
+ 0.24542333333,
974
+ 0.65059,
975
+ 0.18116666667,
976
+ 0.77148333333,
977
+ 0.88124666667,
978
+ 0.86107,
979
+ 0.31515666667,
980
+ 0.91171666667,
981
+ 0.37591333333,
982
+ 0.34916,
983
+ 0.77019333333,
984
+ 0.62402666667,
985
+ 0.48065666667,
986
+ 0.22993333333,
987
+ 0.89142,
988
+ 0.085606666667,
989
+ 0.70465333333,
990
+ 0.50069666667,
991
+ 0.27494333333,
992
+ 0.88125,
993
+ 0.55443333333,
994
+ 0.38727,
995
+ 0.76749333333,
996
+ 0.83601,
997
+ 0.71435,
998
+ 0.53133666667,
999
+ 0.33418,
1000
+ 0.44919,
1001
+ 0.86442,
1002
+ 0.19165,
1003
+ 0.82827,
1004
+ 0.32092,
1005
+ 0.23609333333,
1006
+ 0.45102333333,
1007
+ 0.75873,
1008
+ 0.23588666667,
1009
+ 0.41906666667,
1010
+ 0.357,
1011
+ 0.32246333333,
1012
+ 0.64624666667,
1013
+ null
1014
+ ],
1015
+ "prints": [
1016
+ [
1017
+ "Last:0.65"
1018
+ ],
1019
+ [
1020
+ "Min:0.03"
1021
+ ],
1022
+ [
1023
+ "Max:0.98"
1024
+ ],
1025
+ [
1026
+ "Average:0.50"
1027
+ ]
1028
+ ],
1029
+ "last_value": 0.65,
1030
+ "minimum_value": 0.03,
1031
+ "maximum_value": 0.98,
1032
+ "average_value": 0.5
1033
+ }
1034
+ ],
1035
+ "times": [
1036
+ "2023-06-18T17:05:00+02:00",
1037
+ "2023-06-18T17:10:00+02:00",
1038
+ "2023-06-18T17:15:00+02:00",
1039
+ "2023-06-18T17:20:00+02:00",
1040
+ "2023-06-18T17:25:00+02:00",
1041
+ "2023-06-18T17:30:00+02:00",
1042
+ "2023-06-18T17:35:00+02:00",
1043
+ "2023-06-18T17:40:00+02:00",
1044
+ "2023-06-18T17:45:00+02:00",
1045
+ "2023-06-18T17:50:00+02:00",
1046
+ "2023-06-18T17:55:00+02:00",
1047
+ "2023-06-18T18:00:00+02:00",
1048
+ "2023-06-18T18:05:00+02:00",
1049
+ "2023-06-18T18:10:00+02:00",
1050
+ "2023-06-18T18:15:00+02:00",
1051
+ "2023-06-18T18:20:00+02:00",
1052
+ "2023-06-18T18:25:00+02:00",
1053
+ "2023-06-18T18:30:00+02:00",
1054
+ "2023-06-18T18:35:00+02:00",
1055
+ "2023-06-18T18:40:00+02:00",
1056
+ "2023-06-18T18:45:00+02:00",
1057
+ "2023-06-18T18:50:00+02:00",
1058
+ "2023-06-18T18:55:00+02:00",
1059
+ "2023-06-18T19:00:00+02:00",
1060
+ "2023-06-18T19:05:00+02:00",
1061
+ "2023-06-18T19:10:00+02:00",
1062
+ "2023-06-18T19:15:00+02:00",
1063
+ "2023-06-18T19:20:00+02:00",
1064
+ "2023-06-18T19:25:00+02:00",
1065
+ "2023-06-18T19:30:00+02:00",
1066
+ "2023-06-18T19:35:00+02:00",
1067
+ "2023-06-18T19:40:00+02:00",
1068
+ "2023-06-18T19:45:00+02:00",
1069
+ "2023-06-18T19:50:00+02:00",
1070
+ "2023-06-18T19:55:00+02:00",
1071
+ "2023-06-18T20:00:00+02:00",
1072
+ "2023-06-18T20:05:00+02:00",
1073
+ "2023-06-18T20:10:00+02:00",
1074
+ "2023-06-18T20:15:00+02:00",
1075
+ "2023-06-18T20:20:00+02:00",
1076
+ "2023-06-18T20:25:00+02:00",
1077
+ "2023-06-18T20:30:00+02:00",
1078
+ "2023-06-18T20:35:00+02:00",
1079
+ "2023-06-18T20:40:00+02:00",
1080
+ "2023-06-18T20:45:00+02:00",
1081
+ "2023-06-18T20:50:00+02:00",
1082
+ "2023-06-18T20:55:00+02:00",
1083
+ "2023-06-18T21:00:00+02:00",
1084
+ "2023-06-18T21:05:00+02:00",
1085
+ "2023-06-18T21:10:00+02:00",
1086
+ "2023-06-18T21:15:00+02:00",
1087
+ "2023-06-18T21:20:00+02:00",
1088
+ "2023-06-18T21:25:00+02:00",
1089
+ "2023-06-18T21:30:00+02:00",
1090
+ "2023-06-18T21:35:00+02:00",
1091
+ "2023-06-18T21:40:00+02:00",
1092
+ "2023-06-18T21:45:00+02:00",
1093
+ "2023-06-18T21:50:00+02:00",
1094
+ "2023-06-18T21:55:00+02:00",
1095
+ "2023-06-18T22:00:00+02:00",
1096
+ "2023-06-18T22:05:00+02:00",
1097
+ "2023-06-18T22:10:00+02:00",
1098
+ "2023-06-18T22:15:00+02:00",
1099
+ "2023-06-18T22:20:00+02:00",
1100
+ "2023-06-18T22:25:00+02:00",
1101
+ "2023-06-18T22:30:00+02:00",
1102
+ "2023-06-18T22:35:00+02:00",
1103
+ "2023-06-18T22:40:00+02:00",
1104
+ "2023-06-18T22:45:00+02:00",
1105
+ "2023-06-18T22:50:00+02:00",
1106
+ "2023-06-18T22:55:00+02:00",
1107
+ "2023-06-18T23:00:00+02:00",
1108
+ "2023-06-18T23:05:00+02:00",
1109
+ "2023-06-18T23:10:00+02:00",
1110
+ "2023-06-18T23:15:00+02:00",
1111
+ "2023-06-18T23:20:00+02:00",
1112
+ "2023-06-18T23:25:00+02:00",
1113
+ "2023-06-18T23:30:00+02:00",
1114
+ "2023-06-18T23:35:00+02:00",
1115
+ "2023-06-18T23:40:00+02:00",
1116
+ "2023-06-18T23:45:00+02:00",
1117
+ "2023-06-18T23:50:00+02:00",
1118
+ "2023-06-18T23:55:00+02:00",
1119
+ "2023-06-19T00:00:00+02:00",
1120
+ "2023-06-19T00:05:00+02:00",
1121
+ "2023-06-19T00:10:00+02:00",
1122
+ "2023-06-19T00:15:00+02:00",
1123
+ "2023-06-19T00:20:00+02:00",
1124
+ "2023-06-19T00:25:00+02:00",
1125
+ "2023-06-19T00:30:00+02:00",
1126
+ "2023-06-19T00:35:00+02:00",
1127
+ "2023-06-19T00:40:00+02:00",
1128
+ "2023-06-19T00:45:00+02:00",
1129
+ "2023-06-19T00:50:00+02:00",
1130
+ "2023-06-19T00:55:00+02:00",
1131
+ "2023-06-19T01:00:00+02:00",
1132
+ "2023-06-19T01:05:00+02:00",
1133
+ "2023-06-19T01:10:00+02:00",
1134
+ "2023-06-19T01:15:00+02:00",
1135
+ "2023-06-19T01:20:00+02:00",
1136
+ "2023-06-19T01:25:00+02:00",
1137
+ "2023-06-19T01:30:00+02:00",
1138
+ "2023-06-19T01:35:00+02:00",
1139
+ "2023-06-19T01:40:00+02:00",
1140
+ "2023-06-19T01:45:00+02:00",
1141
+ "2023-06-19T01:50:00+02:00",
1142
+ "2023-06-19T01:55:00+02:00",
1143
+ "2023-06-19T02:00:00+02:00",
1144
+ "2023-06-19T02:05:00+02:00",
1145
+ "2023-06-19T02:10:00+02:00",
1146
+ "2023-06-19T02:15:00+02:00",
1147
+ "2023-06-19T02:20:00+02:00",
1148
+ "2023-06-19T02:25:00+02:00",
1149
+ "2023-06-19T02:30:00+02:00",
1150
+ "2023-06-19T02:35:00+02:00",
1151
+ "2023-06-19T02:40:00+02:00",
1152
+ "2023-06-19T02:45:00+02:00",
1153
+ "2023-06-19T02:50:00+02:00",
1154
+ "2023-06-19T02:55:00+02:00",
1155
+ "2023-06-19T03:00:00+02:00",
1156
+ "2023-06-19T03:05:00+02:00",
1157
+ "2023-06-19T03:10:00+02:00",
1158
+ "2023-06-19T03:15:00+02:00",
1159
+ "2023-06-19T03:20:00+02:00",
1160
+ "2023-06-19T03:25:00+02:00",
1161
+ "2023-06-19T03:30:00+02:00",
1162
+ "2023-06-19T03:35:00+02:00",
1163
+ "2023-06-19T03:40:00+02:00",
1164
+ "2023-06-19T03:45:00+02:00",
1165
+ "2023-06-19T03:50:00+02:00",
1166
+ "2023-06-19T03:55:00+02:00",
1167
+ "2023-06-19T04:00:00+02:00",
1168
+ "2023-06-19T04:05:00+02:00",
1169
+ "2023-06-19T04:10:00+02:00",
1170
+ "2023-06-19T04:15:00+02:00",
1171
+ "2023-06-19T04:20:00+02:00",
1172
+ "2023-06-19T04:25:00+02:00",
1173
+ "2023-06-19T04:30:00+02:00",
1174
+ "2023-06-19T04:35:00+02:00",
1175
+ "2023-06-19T04:40:00+02:00",
1176
+ "2023-06-19T04:45:00+02:00",
1177
+ "2023-06-19T04:50:00+02:00",
1178
+ "2023-06-19T04:55:00+02:00",
1179
+ "2023-06-19T05:00:00+02:00",
1180
+ "2023-06-19T05:05:00+02:00",
1181
+ "2023-06-19T05:10:00+02:00",
1182
+ "2023-06-19T05:15:00+02:00",
1183
+ "2023-06-19T05:20:00+02:00",
1184
+ "2023-06-19T05:25:00+02:00",
1185
+ "2023-06-19T05:30:00+02:00",
1186
+ "2023-06-19T05:35:00+02:00",
1187
+ "2023-06-19T05:40:00+02:00",
1188
+ "2023-06-19T05:45:00+02:00",
1189
+ "2023-06-19T05:50:00+02:00",
1190
+ "2023-06-19T05:55:00+02:00",
1191
+ "2023-06-19T06:00:00+02:00",
1192
+ "2023-06-19T06:05:00+02:00",
1193
+ "2023-06-19T06:10:00+02:00",
1194
+ "2023-06-19T06:15:00+02:00",
1195
+ "2023-06-19T06:20:00+02:00",
1196
+ "2023-06-19T06:25:00+02:00",
1197
+ "2023-06-19T06:30:00+02:00",
1198
+ "2023-06-19T06:35:00+02:00",
1199
+ "2023-06-19T06:40:00+02:00",
1200
+ "2023-06-19T06:45:00+02:00",
1201
+ "2023-06-19T06:50:00+02:00",
1202
+ "2023-06-19T06:55:00+02:00",
1203
+ "2023-06-19T07:00:00+02:00",
1204
+ "2023-06-19T07:05:00+02:00",
1205
+ "2023-06-19T07:10:00+02:00",
1206
+ "2023-06-19T07:15:00+02:00",
1207
+ "2023-06-19T07:20:00+02:00",
1208
+ "2023-06-19T07:25:00+02:00",
1209
+ "2023-06-19T07:30:00+02:00",
1210
+ "2023-06-19T07:35:00+02:00",
1211
+ "2023-06-19T07:40:00+02:00",
1212
+ "2023-06-19T07:45:00+02:00",
1213
+ "2023-06-19T07:50:00+02:00",
1214
+ "2023-06-19T07:55:00+02:00",
1215
+ "2023-06-19T08:00:00+02:00",
1216
+ "2023-06-19T08:05:00+02:00",
1217
+ "2023-06-19T08:10:00+02:00",
1218
+ "2023-06-19T08:15:00+02:00",
1219
+ "2023-06-19T08:20:00+02:00",
1220
+ "2023-06-19T08:25:00+02:00",
1221
+ "2023-06-19T08:30:00+02:00",
1222
+ "2023-06-19T08:35:00+02:00",
1223
+ "2023-06-19T08:40:00+02:00",
1224
+ "2023-06-19T08:45:00+02:00",
1225
+ "2023-06-19T08:50:00+02:00",
1226
+ "2023-06-19T08:55:00+02:00",
1227
+ "2023-06-19T09:00:00+02:00",
1228
+ "2023-06-19T09:05:00+02:00",
1229
+ "2023-06-19T09:10:00+02:00",
1230
+ "2023-06-19T09:15:00+02:00",
1231
+ "2023-06-19T09:20:00+02:00",
1232
+ "2023-06-19T09:25:00+02:00",
1233
+ "2023-06-19T09:30:00+02:00",
1234
+ "2023-06-19T09:35:00+02:00",
1235
+ "2023-06-19T09:40:00+02:00",
1236
+ "2023-06-19T09:45:00+02:00",
1237
+ "2023-06-19T09:50:00+02:00",
1238
+ "2023-06-19T09:55:00+02:00",
1239
+ "2023-06-19T10:00:00+02:00",
1240
+ "2023-06-19T10:05:00+02:00",
1241
+ "2023-06-19T10:10:00+02:00",
1242
+ "2023-06-19T10:15:00+02:00",
1243
+ "2023-06-19T10:20:00+02:00",
1244
+ "2023-06-19T10:25:00+02:00",
1245
+ "2023-06-19T10:30:00+02:00",
1246
+ "2023-06-19T10:35:00+02:00",
1247
+ "2023-06-19T10:40:00+02:00",
1248
+ "2023-06-19T10:45:00+02:00",
1249
+ "2023-06-19T10:50:00+02:00",
1250
+ "2023-06-19T10:55:00+02:00",
1251
+ "2023-06-19T11:00:00+02:00",
1252
+ "2023-06-19T11:05:00+02:00",
1253
+ "2023-06-19T11:10:00+02:00",
1254
+ "2023-06-19T11:15:00+02:00",
1255
+ "2023-06-19T11:20:00+02:00",
1256
+ "2023-06-19T11:25:00+02:00",
1257
+ "2023-06-19T11:30:00+02:00",
1258
+ "2023-06-19T11:35:00+02:00",
1259
+ "2023-06-19T11:40:00+02:00",
1260
+ "2023-06-19T11:45:00+02:00",
1261
+ "2023-06-19T11:50:00+02:00",
1262
+ "2023-06-19T11:55:00+02:00",
1263
+ "2023-06-19T12:00:00+02:00",
1264
+ "2023-06-19T12:05:00+02:00",
1265
+ "2023-06-19T12:10:00+02:00",
1266
+ "2023-06-19T12:15:00+02:00",
1267
+ "2023-06-19T12:20:00+02:00",
1268
+ "2023-06-19T12:25:00+02:00",
1269
+ "2023-06-19T12:30:00+02:00",
1270
+ "2023-06-19T12:35:00+02:00",
1271
+ "2023-06-19T12:40:00+02:00",
1272
+ "2023-06-19T12:45:00+02:00",
1273
+ "2023-06-19T12:50:00+02:00",
1274
+ "2023-06-19T12:55:00+02:00",
1275
+ "2023-06-19T13:00:00+02:00",
1276
+ "2023-06-19T13:05:00+02:00",
1277
+ "2023-06-19T13:10:00+02:00",
1278
+ "2023-06-19T13:15:00+02:00",
1279
+ "2023-06-19T13:20:00+02:00",
1280
+ "2023-06-19T13:25:00+02:00",
1281
+ "2023-06-19T13:30:00+02:00",
1282
+ "2023-06-19T13:35:00+02:00",
1283
+ "2023-06-19T13:40:00+02:00",
1284
+ "2023-06-19T13:45:00+02:00",
1285
+ "2023-06-19T13:50:00+02:00",
1286
+ "2023-06-19T13:55:00+02:00",
1287
+ "2023-06-19T14:00:00+02:00",
1288
+ "2023-06-19T14:05:00+02:00",
1289
+ "2023-06-19T14:10:00+02:00",
1290
+ "2023-06-19T14:15:00+02:00",
1291
+ "2023-06-19T14:20:00+02:00",
1292
+ "2023-06-19T14:25:00+02:00",
1293
+ "2023-06-19T14:30:00+02:00",
1294
+ "2023-06-19T14:35:00+02:00",
1295
+ "2023-06-19T14:40:00+02:00",
1296
+ "2023-06-19T14:45:00+02:00",
1297
+ "2023-06-19T14:50:00+02:00",
1298
+ "2023-06-19T14:55:00+02:00",
1299
+ "2023-06-19T15:00:00+02:00",
1300
+ "2023-06-19T15:05:00+02:00",
1301
+ "2023-06-19T15:10:00+02:00",
1302
+ "2023-06-19T15:15:00+02:00",
1303
+ "2023-06-19T15:20:00+02:00",
1304
+ "2023-06-19T15:25:00+02:00",
1305
+ "2023-06-19T15:30:00+02:00",
1306
+ "2023-06-19T15:35:00+02:00",
1307
+ "2023-06-19T15:40:00+02:00",
1308
+ "2023-06-19T15:45:00+02:00",
1309
+ "2023-06-19T15:50:00+02:00",
1310
+ "2023-06-19T15:55:00+02:00",
1311
+ "2023-06-19T16:00:00+02:00",
1312
+ "2023-06-19T16:05:00+02:00",
1313
+ "2023-06-19T16:10:00+02:00",
1314
+ "2023-06-19T16:15:00+02:00",
1315
+ "2023-06-19T16:20:00+02:00",
1316
+ "2023-06-19T16:25:00+02:00",
1317
+ "2023-06-19T16:30:00+02:00",
1318
+ "2023-06-19T16:35:00+02:00",
1319
+ "2023-06-19T16:40:00+02:00",
1320
+ "2023-06-19T16:45:00+02:00",
1321
+ "2023-06-19T16:50:00+02:00",
1322
+ "2023-06-19T16:55:00+02:00",
1323
+ "2023-06-19T17:00:00+02:00",
1324
+ "2023-06-19T17:05:00+02:00"
1325
+ ]
1326
+ }