@centreon/ui 24.4.21 → 24.4.23

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