@centreon/ui 24.9.4 → 24.9.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (727) hide show
  1. package/.storybook/main.js +82 -0
  2. package/.storybook/preview.tsx +21 -0
  3. package/README.md +14 -44
  4. package/jest.config.js +20 -0
  5. package/package.json +60 -129
  6. package/{test/setupTests.js → setupTests.js} +1 -2
  7. package/src/ActionsList/index.stories.tsx +1 -81
  8. package/src/ActionsList/index.tsx +23 -60
  9. package/src/Button/Icon/index.stories.tsx +2 -2
  10. package/src/Button/Icon/index.tsx +5 -14
  11. package/src/Button/Save/StartIcon.tsx +4 -4
  12. package/src/Button/Save/index.stories.tsx +5 -10
  13. package/src/Button/Save/index.tsx +6 -10
  14. package/src/Colors/index.stories.tsx +2 -0
  15. package/src/Colors/index.tsx +3 -7
  16. package/src/ContentWithCircularProgress/index.stories.tsx +1 -1
  17. package/src/Dialog/Confirm/index.tsx +5 -26
  18. package/src/Dialog/Duplicate/index.test.tsx +1 -1
  19. package/src/Dialog/Duplicate/index.tsx +2 -5
  20. package/src/Dialog/UnsavedChanges/index.tsx +21 -22
  21. package/src/Dialog/UnsavedChanges/translatedLabels.ts +6 -4
  22. package/src/Dialog/index.stories.tsx +1 -1
  23. package/src/Dialog/index.tsx +7 -26
  24. package/src/FallbackPage/FallbackPage.tsx +7 -7
  25. package/src/FileDropZone/index.stories.tsx +1 -1
  26. package/src/FileDropZone/index.tsx +7 -9
  27. package/src/FileDropZone/useDropzone.test.ts +1 -1
  28. package/src/FileDropZone/useDropzone.ts +1 -1
  29. package/src/Form/CollapsibleGroup.tsx +11 -21
  30. package/src/Form/FormButtons.tsx +5 -3
  31. package/src/Form/Inputs/Autocomplete.tsx +4 -4
  32. package/src/Form/Inputs/ConnectedAutocomplete.tsx +2 -16
  33. package/src/Form/Inputs/FieldsTable/FieldsTable.tsx +15 -15
  34. package/src/Form/Inputs/FieldsTable/Row.tsx +2 -2
  35. package/src/Form/Inputs/Grid.tsx +2 -4
  36. package/src/Form/Inputs/PasswordEndAdornment.tsx +1 -1
  37. package/src/Form/Inputs/Radio.tsx +7 -18
  38. package/src/Form/Inputs/Switch.tsx +1 -1
  39. package/src/Form/Inputs/Text.tsx +16 -40
  40. package/src/Form/Inputs/index.tsx +72 -99
  41. package/src/Form/Inputs/models.ts +15 -42
  42. package/src/Form/{Form.stories.tsx → index.stories.tsx} +5 -4
  43. package/src/Form/index.tsx +72 -0
  44. package/src/Form/storiesData.tsx +32 -75
  45. package/src/Home.stories.mdx +122 -0
  46. package/src/Icon/IconAttach/index.tsx +6 -1
  47. package/src/Image/Image.tsx +65 -75
  48. package/src/Image/atoms.ts +3 -3
  49. package/src/Image/index.stories.tsx +101 -101
  50. package/src/Image/index.test.tsx +53 -53
  51. package/src/Image/models.ts +3 -3
  52. package/src/Image/useLoadImage.ts +49 -49
  53. package/src/InputField/Search/PersistentTooltip.tsx +8 -12
  54. package/src/InputField/Search/RegexpHelpTooltip.tsx +1 -1
  55. package/src/InputField/Search/index.stories.tsx +1 -1
  56. package/src/InputField/Search/index.tsx +2 -2
  57. package/src/InputField/Select/Autocomplete/Connected/Multi/index.test.tsx +23 -5
  58. package/src/InputField/Select/Autocomplete/Connected/Multi/index.tsx +1 -1
  59. package/src/InputField/Select/Autocomplete/Connected/index.stories.tsx +7 -4
  60. package/src/InputField/Select/Autocomplete/Connected/index.test.tsx +13 -10
  61. package/src/InputField/Select/Autocomplete/Connected/index.tsx +22 -63
  62. package/src/InputField/Select/Autocomplete/Draggable/MultiConnected.tsx +1 -1
  63. package/src/InputField/Select/Autocomplete/Draggable/SortableList.tsx +2 -2
  64. package/src/InputField/Select/Autocomplete/Draggable/SortableListContent.tsx +7 -6
  65. package/src/InputField/Select/Autocomplete/Draggable/index.stories.tsx +8 -6
  66. package/src/InputField/Select/Autocomplete/Draggable/index.tsx +17 -16
  67. package/src/InputField/Select/Autocomplete/Multi/index.tsx +17 -36
  68. package/src/InputField/Select/Autocomplete/Popover/index.tsx +1 -1
  69. package/src/InputField/Select/Autocomplete/index.stories.tsx +12 -2
  70. package/src/InputField/Select/Autocomplete/index.tsx +122 -137
  71. package/src/InputField/Select/IconPopover/index.tsx +6 -6
  72. package/src/InputField/Select/Option.tsx +1 -1
  73. package/src/InputField/Select/index.tsx +9 -23
  74. package/src/InputField/Text/index.stories.tsx +4 -3
  75. package/src/InputField/Text/index.tsx +46 -70
  76. package/src/InputField/Text/useAutoSize.ts +62 -62
  77. package/src/LicenseMessage/index.tsx +1 -1
  78. package/src/Listing/ActionBar/ColumnMultiSelect.tsx +4 -4
  79. package/src/Listing/ActionBar/PaginationActions.tsx +1 -1
  80. package/src/Listing/ActionBar/index.tsx +21 -25
  81. package/src/Listing/Cell/DataCell.tsx +73 -66
  82. package/src/Listing/Cell/EllipsisTypography.tsx +2 -0
  83. package/src/Listing/Cell/index.tsx +14 -87
  84. package/src/Listing/Checkbox.tsx +1 -1
  85. package/src/Listing/Header/{_internals/Label.tsx → Label.tsx} +3 -2
  86. package/src/Listing/Header/{_internals/PredefinedSelectionList.tsx → PredefinedSelectionList.tsx} +1 -1
  87. package/src/Listing/Header/{Cell/ListingHeaderCell.tsx → SortableCell/Content.tsx} +85 -18
  88. package/src/Listing/Header/SortableCell/DraggableIcon.tsx +41 -0
  89. package/src/Listing/Header/index.tsx +243 -0
  90. package/src/Listing/{Row/Row.tsx → Row.tsx} +17 -21
  91. package/src/Listing/Skeleton.tsx +11 -0
  92. package/src/Listing/index.stories.tsx +42 -180
  93. package/src/Listing/index.test.tsx +234 -0
  94. package/src/Listing/index.tsx +288 -304
  95. package/src/Listing/models.ts +0 -2
  96. package/src/Listing/tableAtoms.ts +10 -15
  97. package/src/Listing/useResizeObserver.ts +1 -1
  98. package/src/Listing/useStyleTable.ts +9 -10
  99. package/src/ListingPage/Filter.tsx +18 -15
  100. package/src/ListingPage/index.stories.tsx +8 -21
  101. package/src/ListingPage/index.tsx +38 -20
  102. package/src/Logo/CentreonLogo.tsx +2 -2
  103. package/src/MenuSkeleton/index.tsx +1 -1
  104. package/src/Module/LicensedModule/LicenseCheck/index.stories.tsx +2 -0
  105. package/src/Module/LicensedModule/LicenseCheck/index.tsx +9 -24
  106. package/src/Module/LicensedModule/index.tsx +1 -7
  107. package/src/Module/index.tsx +8 -9
  108. package/src/MultiSelectEntries/index.tsx +1 -1
  109. package/src/MultiSelectEntries/useHover.ts +1 -1
  110. package/src/Panel/Memoized.tsx +1 -1
  111. package/src/Panel/Section/ExpandableSection.tsx +6 -6
  112. package/src/Panel/Section/index.test.tsx +1 -1
  113. package/src/Panel/Section/index.tsx +2 -2
  114. package/src/Panel/index.tsx +19 -25
  115. package/src/PopoverMenu/index.tsx +9 -24
  116. package/src/RichTextEditor/ContentEditable.tsx +149 -195
  117. package/src/RichTextEditor/RichTextEditor.tsx +119 -244
  118. package/src/RichTextEditor/index.stories.tsx +88 -102
  119. package/src/RichTextEditor/index.ts +2 -2
  120. package/src/RichTextEditor/initialEditorState.json +113 -113
  121. package/src/RichTextEditor/plugins/AutoLinkPlugin/index.tsx +9 -57
  122. package/src/RichTextEditor/plugins/FloatingLinkEditorPlugin.tsx +25 -63
  123. package/src/RichTextEditor/plugins/ToolbarPlugin/FormatButtons.tsx +185 -124
  124. package/src/RichTextEditor/plugins/ToolbarPlugin/UndoRedoButtons.tsx +87 -97
  125. package/src/RichTextEditor/plugins/ToolbarPlugin/index.tsx +37 -62
  126. package/src/RichTextEditor/translatedLabels.ts +5 -8
  127. package/src/Snackbar/SnackbarProvider.tsx +4 -3
  128. package/src/Snackbar/Transition.tsx +6 -5
  129. package/src/Snackbar/index.tsx +12 -21
  130. package/src/Snackbar/useSnackbar.tsx +1 -5
  131. package/src/SortableItems/Item.tsx +3 -3
  132. package/src/SortableItems/SortableItem.tsx +3 -4
  133. package/src/SortableItems/index.stories.tsx +6 -5
  134. package/src/SortableItems/index.tsx +26 -20
  135. package/src/StatusChip/index.tsx +1 -1
  136. package/src/StoryBookThemeProvider/index.tsx +36 -35
  137. package/src/ThemeProvider/index.tsx +17 -51
  138. package/src/ThemeProvider/palettes.ts +201 -437
  139. package/src/TopCounterElements/ResourceSubMenu.tsx +4 -1
  140. package/src/TopCounterElements/StatusCounter.tsx +2 -2
  141. package/src/TopCounterElements/TopCounterLayout.tsx +4 -3
  142. package/src/TopCounterElements/{useCloseOnLegacyPage.tsx → useCloseOnLegacyPage.ts} +2 -5
  143. package/src/Typography/{Typography.stories.tsx → index.stories.tsx} +5 -5
  144. package/src/Typography/{story.utils.tsx → index.tsx} +6 -6
  145. package/src/WallpaperPage/index.stories.tsx +1 -1
  146. package/src/WallpaperPage/index.tsx +1 -1
  147. package/src/Wizard/ActionsBar.test.tsx +1 -1
  148. package/src/Wizard/ActionsBar.tsx +1 -1
  149. package/src/Wizard/StepIcon.tsx +1 -1
  150. package/src/Wizard/Stepper.tsx +2 -2
  151. package/src/Wizard/WizardContent.tsx +4 -3
  152. package/src/Wizard/index.stories.tsx +20 -7
  153. package/src/Wizard/index.test.tsx +4 -4
  154. package/src/Wizard/index.tsx +7 -22
  155. package/src/Wizard/models.ts +1 -8
  156. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-loading-with-no-data-1-snap.png +0 -0
  157. package/src/api/QueryProvider.tsx +4 -7
  158. package/src/api/TestQueryProvider.tsx +23 -24
  159. package/src/api/buildListingDecoder.ts +1 -1
  160. package/src/api/buildListingEndpoint/getSearchQueryParameterValue.ts +33 -42
  161. package/src/api/buildListingEndpoint/index.test.ts +2 -2
  162. package/src/api/buildListingEndpoint/index.ts +2 -2
  163. package/src/api/buildListingEndpoint/models.ts +2 -2
  164. package/src/api/customFetch.ts +3 -22
  165. package/src/api/useFetchQuery/index.test.ts +6 -1
  166. package/src/api/useFetchQuery/index.ts +49 -79
  167. package/src/api/useMutationQuery/index.test.ts +5 -5
  168. package/src/api/useMutationQuery/index.ts +28 -91
  169. package/src/api/useRequest/index.test.ts +4 -1
  170. package/src/api/useRequest/index.ts +14 -14
  171. package/src/index.ts +22 -31
  172. package/src/queryParameters/index.ts +1 -1
  173. package/src/queryParameters/url/index.ts +1 -5
  174. package/src/storyshots.test.js +52 -0
  175. package/{test → src}/testRenderer.tsx +1 -1
  176. package/src/utils/getNormalizedId.ts +3 -1
  177. package/src/utils/useCopyToClipboard.ts +4 -3
  178. package/src/utils/useDebounce.ts +5 -8
  179. package/src/utils/useDeepCallback.ts +3 -1
  180. package/src/utils/useDeepMemo.ts +3 -1
  181. package/src/utils/useIntersectionObserver.ts +6 -6
  182. package/src/utils/useKeyObserver.tsx +4 -2
  183. package/src/utils/useLocaleDateTimeFormat/index.test.tsx +4 -4
  184. package/src/utils/useLocaleDateTimeFormat/index.ts +2 -4
  185. package/src/utils/useLocaleDateTimeFormat/localeFallback.test.tsx +5 -5
  186. package/src/utils/useMemoComponent.ts +2 -2
  187. package/src/utils/useViewportIntersection.ts +1 -1
  188. package/testRunner.js +36 -0
  189. package/tsconfig.json +29 -0
  190. package/types/declarations.d.ts +9 -0
  191. package/public/README.md +0 -39
  192. package/public/mockServiceWorker.js +0 -284
  193. package/src/@assets/README.md +0 -5
  194. package/src/@assets/brand/centreon-logo-one-line-dark.svg +0 -1
  195. package/src/@assets/brand/centreon-logo-one-line-light.svg +0 -1
  196. package/src/@types/aria-attributes.d.ts +0 -10
  197. package/src/@types/data-attributes.d.ts +0 -3
  198. package/src/@types/globals.d.ts +0 -9
  199. package/src/@types/vite-env.d.ts +0 -2
  200. package/src/ActionsList/ActionsList.styles.ts +0 -85
  201. package/src/ActionsList/models.ts +0 -8
  202. package/src/Checkbox/Checkbox.tsx +0 -109
  203. package/src/Checkbox/CheckboxGroup/index.stories.tsx +0 -41
  204. package/src/Checkbox/CheckboxGroup/index.tsx +0 -75
  205. package/src/Checkbox/index.stories.tsx +0 -39
  206. package/src/Checkbox/index.tsx +0 -2
  207. package/src/Dashboard/Dashboard.cypress.spec.tsx +0 -71
  208. package/src/Dashboard/Dashboard.styles.ts +0 -111
  209. package/src/Dashboard/DashboardLayout.stories.tsx +0 -104
  210. package/src/Dashboard/Grid.tsx +0 -70
  211. package/src/Dashboard/Item.tsx +0 -151
  212. package/src/Dashboard/Layout.tsx +0 -95
  213. package/src/Dashboard/atoms.ts +0 -3
  214. package/src/Dashboard/index.tsx +0 -9
  215. package/src/Dashboard/utils.ts +0 -28
  216. package/src/Form/Form.cypress.spec.tsx +0 -133
  217. package/src/Form/Form.styles.ts +0 -11
  218. package/src/Form/Form.tsx +0 -95
  219. package/src/Form/Inputs/Checkbox.tsx +0 -57
  220. package/src/Form/Inputs/CheckboxGroup.tsx +0 -76
  221. package/src/Form/Inputs/List/Content.tsx +0 -62
  222. package/src/Form/Inputs/List/List.styles.ts +0 -29
  223. package/src/Form/Inputs/List/List.tsx +0 -58
  224. package/src/Form/Inputs/List/useList.ts +0 -81
  225. package/src/Form/index.ts +0 -1
  226. package/src/Graph/BarChart/BarChart.cypress.spec.tsx +0 -283
  227. package/src/Graph/BarChart/BarChart.stories.tsx +0 -213
  228. package/src/Graph/BarChart/BarChart.tsx +0 -104
  229. package/src/Graph/BarChart/BarGroup.tsx +0 -239
  230. package/src/Graph/BarChart/BarStack.tsx +0 -141
  231. package/src/Graph/BarChart/ResponsiveBarChart.tsx +0 -253
  232. package/src/Graph/BarChart/Tooltip/BarChartTooltip.tsx +0 -122
  233. package/src/Graph/BarChart/Tooltip/useBarChartTooltipStyles.ts +0 -28
  234. package/src/Graph/BarChart/atoms.ts +0 -5
  235. package/src/Graph/BarChart/models.ts +0 -21
  236. package/src/Graph/BarChart/useBarChartStyles.tsx +0 -5
  237. package/src/Graph/BarChart/useBarStack.ts +0 -114
  238. package/src/Graph/BarStack/BarStack.cypress.spec.tsx +0 -139
  239. package/src/Graph/BarStack/BarStack.stories.tsx +0 -140
  240. package/src/Graph/BarStack/BarStack.styles.ts +0 -41
  241. package/src/Graph/BarStack/BarStack.tsx +0 -14
  242. package/src/Graph/BarStack/ResponsiveBarStack.tsx +0 -218
  243. package/src/Graph/BarStack/index.ts +0 -1
  244. package/src/Graph/BarStack/models.ts +0 -20
  245. package/src/Graph/BarStack/useResponsiveBarStack.ts +0 -127
  246. package/src/Graph/Chart/BasicComponents/Lines/Point.tsx +0 -36
  247. package/src/Graph/Chart/BasicComponents/Lines/RegularLines/index.tsx +0 -132
  248. package/src/Graph/Chart/BasicComponents/Lines/RegularLines/useRegularLines.ts +0 -15
  249. package/src/Graph/Chart/BasicComponents/Lines/StackedLines/index.tsx +0 -140
  250. package/src/Graph/Chart/BasicComponents/Lines/StackedLines/useStackedLines.ts +0 -67
  251. package/src/Graph/Chart/BasicComponents/Lines/Threshold/BasicThreshold.tsx +0 -52
  252. package/src/Graph/Chart/BasicComponents/Lines/Threshold/Circle.tsx +0 -43
  253. package/src/Graph/Chart/BasicComponents/Lines/Threshold/ThresholdWithPatternLines.tsx +0 -74
  254. package/src/Graph/Chart/BasicComponents/Lines/Threshold/ThresholdWithVariation.tsx +0 -62
  255. package/src/Graph/Chart/BasicComponents/Lines/Threshold/helpers/index.ts +0 -69
  256. package/src/Graph/Chart/BasicComponents/Lines/Threshold/index.tsx +0 -138
  257. package/src/Graph/Chart/BasicComponents/Lines/Threshold/models.ts +0 -104
  258. package/src/Graph/Chart/BasicComponents/Lines/Threshold/useCoordinateCircle.ts +0 -46
  259. package/src/Graph/Chart/BasicComponents/Lines/Threshold/useScaleThreshold.ts +0 -159
  260. package/src/Graph/Chart/BasicComponents/Lines/index.tsx +0 -262
  261. package/src/Graph/Chart/BasicComponents/Lines/models.ts +0 -42
  262. package/src/Graph/Chart/Chart.cypress.spec.tsx +0 -701
  263. package/src/Graph/Chart/Chart.stories.tsx +0 -697
  264. package/src/Graph/Chart/Chart.styles.ts +0 -13
  265. package/src/Graph/Chart/Chart.tsx +0 -349
  266. package/src/Graph/Chart/InteractiveComponents/AnchorPoint/GuidingLines.tsx +0 -45
  267. package/src/Graph/Chart/InteractiveComponents/AnchorPoint/RegularAnchorPoint.tsx +0 -70
  268. package/src/Graph/Chart/InteractiveComponents/AnchorPoint/StackedAnchorPoint.tsx +0 -81
  269. package/src/Graph/Chart/InteractiveComponents/AnchorPoint/index.tsx +0 -20
  270. package/src/Graph/Chart/InteractiveComponents/AnchorPoint/models.ts +0 -62
  271. package/src/Graph/Chart/InteractiveComponents/AnchorPoint/useTickGraph.ts +0 -92
  272. package/src/Graph/Chart/InteractiveComponents/Annotations/Annotation/Area.tsx +0 -114
  273. package/src/Graph/Chart/InteractiveComponents/Annotations/Annotation/Line.tsx +0 -103
  274. package/src/Graph/Chart/InteractiveComponents/Annotations/Annotation/index.tsx +0 -81
  275. package/src/Graph/Chart/InteractiveComponents/Annotations/Area/Downtime.tsx +0 -27
  276. package/src/Graph/Chart/InteractiveComponents/Annotations/EventAnnotations.tsx +0 -61
  277. package/src/Graph/Chart/InteractiveComponents/Annotations/Line/Acknowledgement.tsx +0 -27
  278. package/src/Graph/Chart/InteractiveComponents/Annotations/Line/Comments.tsx +0 -25
  279. package/src/Graph/Chart/InteractiveComponents/Annotations/annotationsAtoms.ts +0 -183
  280. package/src/Graph/Chart/InteractiveComponents/Annotations/index.tsx +0 -49
  281. package/src/Graph/Chart/InteractiveComponents/Annotations/models.ts +0 -25
  282. package/src/Graph/Chart/InteractiveComponents/Annotations/useAnnotation.ts +0 -56
  283. package/src/Graph/Chart/InteractiveComponents/Bar.tsx +0 -21
  284. package/src/Graph/Chart/InteractiveComponents/GraphValueTooltip/GraphValueTooltip.tsx +0 -61
  285. package/src/Graph/Chart/InteractiveComponents/GraphValueTooltip/GraphValueTooltipContent.tsx +0 -74
  286. package/src/Graph/Chart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltip.ts +0 -61
  287. package/src/Graph/Chart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltipStyles.ts +0 -31
  288. package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/TimeShiftIcon.tsx +0 -62
  289. package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/TimeShiftZone.tsx +0 -74
  290. package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/index.tsx +0 -84
  291. package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/models.ts +0 -12
  292. package/src/Graph/Chart/InteractiveComponents/TimeShiftZones/useTimeShiftZones.ts +0 -73
  293. package/src/Graph/Chart/InteractiveComponents/Tooltip/index.tsx +0 -59
  294. package/src/Graph/Chart/InteractiveComponents/Tooltip/models.ts +0 -9
  295. package/src/Graph/Chart/InteractiveComponents/Tooltip/useGraphTooltip.ts +0 -67
  296. package/src/Graph/Chart/InteractiveComponents/ZoomPreview/index.tsx +0 -38
  297. package/src/Graph/Chart/InteractiveComponents/ZoomPreview/models.ts +0 -9
  298. package/src/Graph/Chart/InteractiveComponents/ZoomPreview/useZoomPreview.ts +0 -107
  299. package/src/Graph/Chart/InteractiveComponents/ZoomPreview/zoomPreviewAtoms.ts +0 -3
  300. package/src/Graph/Chart/InteractiveComponents/index.tsx +0 -278
  301. package/src/Graph/Chart/InteractiveComponents/interactionWithGraphAtoms.ts +0 -32
  302. package/src/Graph/Chart/Legend/Legend.styles.ts +0 -137
  303. package/src/Graph/Chart/Legend/LegendContent.tsx +0 -33
  304. package/src/Graph/Chart/Legend/LegendHeader.tsx +0 -100
  305. package/src/Graph/Chart/Legend/index.tsx +0 -209
  306. package/src/Graph/Chart/Legend/models.ts +0 -16
  307. package/src/Graph/Chart/Legend/useLegend.ts +0 -104
  308. package/src/Graph/Chart/LoadingSkeleton.tsx +0 -44
  309. package/src/Graph/Chart/common/index.ts +0 -52
  310. package/src/Graph/Chart/graphAtoms.ts +0 -6
  311. package/src/Graph/Chart/helpers/doc.ts +0 -563
  312. package/src/Graph/Chart/helpers/index.ts +0 -66
  313. package/src/Graph/Chart/index.tsx +0 -131
  314. package/src/Graph/Chart/models.ts +0 -191
  315. package/src/Graph/Chart/translatedLabels.ts +0 -9
  316. package/src/Graph/Chart/useChartData.ts +0 -88
  317. package/src/Graph/Chart/useChartIntersection.ts +0 -36
  318. package/src/Graph/Gauge/AnimatedPie.tsx +0 -104
  319. package/src/Graph/Gauge/Gauge.cypress.spec.tsx +0 -102
  320. package/src/Graph/Gauge/Gauge.stories.tsx +0 -167
  321. package/src/Graph/Gauge/Gauge.tsx +0 -41
  322. package/src/Graph/Gauge/PieData.tsx +0 -68
  323. package/src/Graph/Gauge/ResponsiveGauge.tsx +0 -134
  324. package/src/Graph/Gauge/Thresholds.tsx +0 -119
  325. package/src/Graph/Gauge/index.ts +0 -1
  326. package/src/Graph/Gauge/models.ts +0 -20
  327. package/src/Graph/Gauge/utils.ts +0 -4
  328. package/src/Graph/HeatMap/HeatMap.cypress.spec.tsx +0 -145
  329. package/src/Graph/HeatMap/HeatMap.stories.tsx +0 -93
  330. package/src/Graph/HeatMap/HeatMap.styles.tsx +0 -30
  331. package/src/Graph/HeatMap/HeatMap.tsx +0 -14
  332. package/src/Graph/HeatMap/HeatMapData.json +0 -137
  333. package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +0 -112
  334. package/src/Graph/HeatMap/index.ts +0 -1
  335. package/src/Graph/HeatMap/model.ts +0 -33
  336. package/src/Graph/Legend/Legend.tsx +0 -21
  337. package/src/Graph/Legend/index.ts +0 -1
  338. package/src/Graph/Legend/models.ts +0 -11
  339. package/src/Graph/PieChart/PieChart.cypress.spec.tsx +0 -150
  340. package/src/Graph/PieChart/PieChart.stories.tsx +0 -204
  341. package/src/Graph/PieChart/PieChart.styles.ts +0 -39
  342. package/src/Graph/PieChart/PieChart.tsx +0 -14
  343. package/src/Graph/PieChart/ResponsivePie.tsx +0 -267
  344. package/src/Graph/PieChart/index.ts +0 -1
  345. package/src/Graph/PieChart/models.ts +0 -24
  346. package/src/Graph/PieChart/useResponsivePie.ts +0 -84
  347. package/src/Graph/SingleBar/ResponsiveSingleBar.tsx +0 -194
  348. package/src/Graph/SingleBar/SingleBar.cypress.spec.tsx +0 -121
  349. package/src/Graph/SingleBar/SingleBar.stories.tsx +0 -232
  350. package/src/Graph/SingleBar/SingleBar.tsx +0 -25
  351. package/src/Graph/SingleBar/ThresholdLine.tsx +0 -99
  352. package/src/Graph/SingleBar/Thresholds.tsx +0 -58
  353. package/src/Graph/SingleBar/index.ts +0 -1
  354. package/src/Graph/SingleBar/models.ts +0 -10
  355. package/src/Graph/Text/Text.cypress.spec.tsx +0 -101
  356. package/src/Graph/Text/Text.stories.tsx +0 -155
  357. package/src/Graph/Text/Text.styles.ts +0 -27
  358. package/src/Graph/Text/Text.tsx +0 -100
  359. package/src/Graph/Text/index.ts +0 -1
  360. package/src/Graph/Tree/DescendantNodes.tsx +0 -89
  361. package/src/Graph/Tree/Links.tsx +0 -77
  362. package/src/Graph/Tree/StandaloneTree.tsx +0 -32
  363. package/src/Graph/Tree/Tree.cypress.spec.tsx +0 -197
  364. package/src/Graph/Tree/Tree.stories.tsx +0 -160
  365. package/src/Graph/Tree/Tree.tsx +0 -116
  366. package/src/Graph/Tree/constants.ts +0 -2
  367. package/src/Graph/Tree/index.ts +0 -4
  368. package/src/Graph/Tree/models.ts +0 -55
  369. package/src/Graph/Tree/stories/contents.tsx +0 -164
  370. package/src/Graph/Tree/stories/datas.ts +0 -305
  371. package/src/Graph/Tree/utils.ts +0 -49
  372. package/src/Graph/common/Axes/AxisStyles.ts +0 -11
  373. package/src/Graph/common/Axes/UnitLabel.tsx +0 -51
  374. package/src/Graph/common/Axes/index.tsx +0 -133
  375. package/src/Graph/common/Axes/models.ts +0 -30
  376. package/src/Graph/common/Axes/useAxisY.ts +0 -119
  377. package/src/Graph/common/BaseChart/BaseChart.tsx +0 -137
  378. package/src/Graph/common/BaseChart/ChartSvgWrapper.tsx +0 -89
  379. package/src/Graph/common/BaseChart/Header/index.tsx +0 -37
  380. package/src/Graph/common/BaseChart/Header/models.ts +0 -4
  381. package/src/Graph/common/BaseChart/Header/useHeaderStyles.ts +0 -9
  382. package/src/Graph/common/BaseChart/useBaseChartStyles.ts +0 -44
  383. package/src/Graph/common/BaseChart/useComputeBaseChartDimensions.ts +0 -66
  384. package/src/Graph/common/Grids/index.tsx +0 -44
  385. package/src/Graph/common/Thresholds/ThresholdLine.tsx +0 -76
  386. package/src/Graph/common/Thresholds/Thresholds.tsx +0 -76
  387. package/src/Graph/common/margins.ts +0 -1
  388. package/src/Graph/common/models.ts +0 -19
  389. package/src/Graph/common/testUtils.ts +0 -71
  390. package/src/Graph/common/timeSeries/index.test.ts +0 -636
  391. package/src/Graph/common/timeSeries/index.test.ts-E +0 -622
  392. package/src/Graph/common/timeSeries/index.ts +0 -697
  393. package/src/Graph/common/timeSeries/models.ts +0 -135
  394. package/src/Graph/common/useTooltipStyles.ts +0 -18
  395. package/src/Graph/common/utils.ts +0 -180
  396. package/src/Graph/index.ts +0 -17
  397. package/src/Graph/mockedData/annotationData.json +0 -324
  398. package/src/Graph/mockedData/curvesWithSameColor.json +0 -252
  399. package/src/Graph/mockedData/exclusionPeriodFirstPeriod.json +0 -368
  400. package/src/Graph/mockedData/exclusionPeriodSecondPeriod.json +0 -372
  401. package/src/Graph/mockedData/exclusionPeriodThirdPeriod.json +0 -367
  402. package/src/Graph/mockedData/lastDay.json +0 -1292
  403. package/src/Graph/mockedData/lastDayAreaStack.json +0 -3050
  404. package/src/Graph/mockedData/lastDayForward.json +0 -1305
  405. package/src/Graph/mockedData/lastDayThreshold.json +0 -2320
  406. package/src/Graph/mockedData/lastDayWithIncompleteValues.json +0 -1286
  407. package/src/Graph/mockedData/lastDayWithLotOfUnits.json +0 -1621
  408. package/src/Graph/mockedData/lastDayWithNullValues.json +0 -1280
  409. package/src/Graph/mockedData/lastMonth.json +0 -1641
  410. package/src/Graph/mockedData/lastWeek.json +0 -2169
  411. package/src/Graph/mockedData/pingService.json +0 -240
  412. package/src/Graph/mockedData/pingServiceLinesBars.json +0 -245
  413. package/src/Graph/mockedData/pingServiceLinesBarsMixed.json +0 -245
  414. package/src/Graph/mockedData/pingServiceLinesBarsStacked.json +0 -245
  415. package/src/Graph/mockedData/pingServiceMixedStacked.json +0 -240
  416. package/src/Graph/mockedData/pingServiceStacked.json +0 -240
  417. package/src/Graph/mockedData/zoomPreview.json +0 -372
  418. package/src/Home.mdx +0 -41
  419. package/src/Icon/AcnowledgementIcon.tsx +0 -8
  420. package/src/Icon/BaseIcon.tsx +0 -32
  421. package/src/Icon/DowntimeIcon.tsx +0 -14
  422. package/src/Icon/HostIcon.tsx +0 -8
  423. package/src/Icon/ServiceIcon.tsx +0 -8
  424. package/src/Icon/index.ts +0 -4
  425. package/src/InputField/Number/Number.cypress.spec.tsx +0 -85
  426. package/src/InputField/Number/Number.stories.tsx +0 -66
  427. package/src/InputField/Number/Number.tsx +0 -75
  428. package/src/InputField/Select/Autocomplete/Connected/Multi/MultiConnectedAutocompleteField.cypress.spec.tsx +0 -127
  429. package/src/InputField/Select/Autocomplete/Connected/Multi/utils/index.ts +0 -22
  430. package/src/Listing/Cell/DataCell.styles.ts +0 -27
  431. package/src/Listing/EmptyResult/EmptyResult.tsx +0 -11
  432. package/src/Listing/Header/Cell/ListingHeaderCell.styles.ts +0 -71
  433. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.styles.ts +0 -26
  434. package/src/Listing/Header/Cell/SelectActionListingHeaderCell.tsx +0 -68
  435. package/src/Listing/Header/ListingHeader.styles.ts +0 -16
  436. package/src/Listing/Header/ListingHeader.tsx +0 -165
  437. package/src/Listing/Header/_internals/DraggableIconButton.tsx +0 -33
  438. package/src/Listing/Header/index.ts +0 -1
  439. package/src/Listing/Listing.cypress.spec.tsx +0 -307
  440. package/src/Listing/Listing.styles.ts +0 -78
  441. package/src/Listing/ListingDocs.mdx +0 -61
  442. package/src/Listing/Row/EmptyRow.styles.ts +0 -14
  443. package/src/Listing/Row/EmptyRow.tsx +0 -30
  444. package/src/Listing/Row/SkeletonLoaderRows.tsx +0 -21
  445. package/src/Module/Module.cypress.spec.tsx +0 -129
  446. package/src/ParentSize/ParentSize.tsx +0 -24
  447. package/src/ParentSize/index.ts +0 -1
  448. package/src/RichTextEditor/RichTextEditor.cypress.spec.tsx +0 -408
  449. package/src/RichTextEditor/plugins/ToolbarPlugin/AlignPicker.tsx +0 -116
  450. package/src/RichTextEditor/plugins/ToolbarPlugin/BlockButtons.tsx +0 -155
  451. package/src/RichTextEditor/plugins/ToolbarPlugin/LinkButton.tsx +0 -106
  452. package/src/RichTextEditor/plugins/ToolbarPlugin/ListButton.tsx +0 -155
  453. package/src/RichTextEditor/plugins/ToolbarPlugin/MacrosButton.tsx +0 -75
  454. package/src/RichTextEditor/plugins/ToolbarPlugin/ToolbarPlugin.styles.ts +0 -32
  455. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.styles.ts +0 -50
  456. package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.tsx +0 -107
  457. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/ErrorText.tsx +0 -14
  458. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/PickersStartEndDate.tsx +0 -154
  459. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/index.tsx +0 -76
  460. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/models.ts +0 -74
  461. package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/usePickersStartEndDate.ts +0 -80
  462. package/src/TimePeriods/CustomTimePeriod/SimpleCustomTimePeriod.tsx +0 -34
  463. package/src/TimePeriods/CustomTimePeriod/index.tsx +0 -71
  464. package/src/TimePeriods/DateTimePickerInput.tsx +0 -96
  465. package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +0 -74
  466. package/src/TimePeriods/SelectedTimePeriod.tsx +0 -102
  467. package/src/TimePeriods/TimePeriods.cypress.spec.tsx +0 -486
  468. package/src/TimePeriods/TimePeriods.styles.ts +0 -23
  469. package/src/TimePeriods/TimePeriods.tsx +0 -59
  470. package/src/TimePeriods/helpers/index.ts +0 -30
  471. package/src/TimePeriods/index.stories.tsx +0 -116
  472. package/src/TimePeriods/index.tsx +0 -38
  473. package/src/TimePeriods/mockedData.ts +0 -12
  474. package/src/TimePeriods/models.ts +0 -113
  475. package/src/TimePeriods/timePeriodsAtoms.ts +0 -102
  476. package/src/TimePeriods/translatedLabels.ts +0 -9
  477. package/src/TimePeriods/useSortTimePeriods.ts +0 -31
  478. package/src/TimePeriods/useTimePeriod.ts +0 -48
  479. package/src/Typography/EllipsisTypography.tsx +0 -21
  480. package/src/Typography/FluidTypography/FluidTypography.cypress.spec.tsx +0 -27
  481. package/src/Typography/FluidTypography/index.stories.tsx +0 -63
  482. package/src/Typography/FluidTypography/index.tsx +0 -46
  483. package/src/Typography/Subtitle.tsx +0 -55
  484. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-normal-1-snap.png +0 -0
  485. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-item-header-1-snap.png +0 -0
  486. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-many-panels-1-snap.png +0 -0
  487. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-basic-1-snap.png +0 -0
  488. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-20-px-height-1-snap.png +0 -0
  489. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-200-px-width-1-snap.png +0 -0
  490. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-heading-5-variant-1-snap.png +0 -0
  491. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-long-text-1-snap.png +0 -0
  492. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-as-empty-state-1-snap.png +0 -0
  493. package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-with-editable-and-sortable-columns-1-snap.png +0 -0
  494. package/src/api/logger.ts +0 -11
  495. package/src/api/useGraphQuery/index.ts +0 -199
  496. package/src/api/useGraphQuery/models.ts +0 -20
  497. package/src/base/tokens/README.md +0 -3
  498. package/src/base/tokens/source/$metadata.json +0 -3
  499. package/src/base/tokens/source/base.json +0 -142
  500. package/src/base/tokens/themes/base.tokens.d.ts +0 -38
  501. package/src/base/tokens/themes/base.tokens.json +0 -563
  502. package/src/base/tokens/themes/base.tokens.ts +0 -38
  503. package/src/base/tokens/themes/ui-dark.tokens.d.ts +0 -38
  504. package/src/base/tokens/themes/ui-dark.tokens.json +0 -563
  505. package/src/base/tokens/themes/ui-dark.tokens.ts +0 -38
  506. package/src/base/tokens/themes/ui-light.tokens.d.ts +0 -38
  507. package/src/base/tokens/themes/ui-light.tokens.json +0 -563
  508. package/src/base/tokens/themes/ui-light.tokens.ts +0 -38
  509. package/src/components/Avatar/Avatar.stories.tsx +0 -23
  510. package/src/components/Avatar/Avatar.styles.ts +0 -11
  511. package/src/components/Avatar/Avatar.tsx +0 -32
  512. package/src/components/Avatar/index.ts +0 -1
  513. package/src/components/Button/Button.stories.tsx +0 -34
  514. package/src/components/Button/Button.styles.ts +0 -44
  515. package/src/components/Button/Button.tsx +0 -78
  516. package/src/components/Button/Icon/IconButton.stories.tsx +0 -18
  517. package/src/components/Button/Icon/IconButton.styles.ts +0 -14
  518. package/src/components/Button/Icon/IconButton.tsx +0 -62
  519. package/src/components/Button/Icon/index.tsx +0 -1
  520. package/src/components/Button/index.ts +0 -2
  521. package/src/components/CollapsibleItem/CollapsibleItem.cypress.spec.tsx +0 -76
  522. package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +0 -51
  523. package/src/components/CollapsibleItem/CollapsibleItem.tsx +0 -76
  524. package/src/components/CollapsibleItem/index.ts +0 -1
  525. package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +0 -38
  526. package/src/components/CopyCommand/CopyCommand.cypress.spec.tsx +0 -155
  527. package/src/components/CopyCommand/CopyCommand.stories.tsx +0 -54
  528. package/src/components/CopyCommand/CopyCommand.styles.tsx +0 -93
  529. package/src/components/CopyCommand/CopyCommand.tsx +0 -80
  530. package/src/components/CopyCommand/translatedLabels.ts +0 -2
  531. package/src/components/DataTable/DataListing.tsx +0 -6
  532. package/src/components/DataTable/DataTable.cypress.spec.tsx +0 -174
  533. package/src/components/DataTable/DataTable.stories.tsx +0 -94
  534. package/src/components/DataTable/DataTable.styles.ts +0 -30
  535. package/src/components/DataTable/DataTable.tsx +0 -35
  536. package/src/components/DataTable/EmptyState/DataTableEmptyState.stories.tsx +0 -21
  537. package/src/components/DataTable/EmptyState/DataTableEmptyState.styles.ts +0 -26
  538. package/src/components/DataTable/EmptyState/DataTableEmptyState.tsx +0 -53
  539. package/src/components/DataTable/Item/DataTableItem.stories.tsx +0 -25
  540. package/src/components/DataTable/Item/DataTableItem.styles.ts +0 -38
  541. package/src/components/DataTable/Item/DataTableItem.tsx +0 -67
  542. package/src/components/DataTable/Item/DataTableItemSkeleton.tsx +0 -13
  543. package/src/components/DataTable/index.ts +0 -12
  544. package/src/components/Form/AccessRights/AccessRights.cypress.spec.tsx +0 -379
  545. package/src/components/Form/AccessRights/AccessRights.stories.tsx +0 -100
  546. package/src/components/Form/AccessRights/AccessRights.styles.ts +0 -10
  547. package/src/components/Form/AccessRights/AccessRights.tsx +0 -61
  548. package/src/components/Form/AccessRights/Actions/Actions.styles.ts +0 -10
  549. package/src/components/Form/AccessRights/Actions/Actions.tsx +0 -64
  550. package/src/components/Form/AccessRights/Actions/useActions.ts +0 -46
  551. package/src/components/Form/AccessRights/List/Item.tsx +0 -90
  552. package/src/components/Form/AccessRights/List/List.styles.tsx +0 -45
  553. package/src/components/Form/AccessRights/List/List.tsx +0 -52
  554. package/src/components/Form/AccessRights/List/ListItemSkeleton.tsx +0 -18
  555. package/src/components/Form/AccessRights/List/ListSkeleton.tsx +0 -22
  556. package/src/components/Form/AccessRights/List/RemoveAccessRight.tsx +0 -38
  557. package/src/components/Form/AccessRights/List/StateChip.tsx +0 -28
  558. package/src/components/Form/AccessRights/List/useItem.ts +0 -64
  559. package/src/components/Form/AccessRights/Provider.tsx +0 -15
  560. package/src/components/Form/AccessRights/ShareInput/ContactSwitch.tsx +0 -50
  561. package/src/components/Form/AccessRights/ShareInput/ShareInput.styles.ts +0 -17
  562. package/src/components/Form/AccessRights/ShareInput/ShareInput.tsx +0 -79
  563. package/src/components/Form/AccessRights/ShareInput/useShareInput.tsx +0 -113
  564. package/src/components/Form/AccessRights/Stats/Stats.tsx +0 -36
  565. package/src/components/Form/AccessRights/atoms.ts +0 -97
  566. package/src/components/Form/AccessRights/common/RoleSelectField.styles.tsx +0 -7
  567. package/src/components/Form/AccessRights/common/RoleSelectField.tsx +0 -45
  568. package/src/components/Form/AccessRights/models.ts +0 -52
  569. package/src/components/Form/AccessRights/storiesData.ts +0 -219
  570. package/src/components/Form/AccessRights/useAccessRightsChange.ts +0 -30
  571. package/src/components/Form/AccessRights/useAccessRightsInitValues.ts +0 -51
  572. package/src/components/Form/AccessRights/utils.ts +0 -18
  573. package/src/components/Form/Dashboard/Dashboard.resource.ts +0 -9
  574. package/src/components/Form/Dashboard/DashboardDuplicationForm.tsx +0 -85
  575. package/src/components/Form/Dashboard/DashboardForm.styles.ts +0 -21
  576. package/src/components/Form/Dashboard/DashboardForm.tsx +0 -137
  577. package/src/components/Form/Dashboard/GlobalRefreshFieldOption.tsx +0 -59
  578. package/src/components/Form/Dashboard/index.ts +0 -3
  579. package/src/components/Form/Dashboard/translatedLabels.ts +0 -8
  580. package/src/components/Form/Form.models.ts +0 -1
  581. package/src/components/Form/Form.resource.ts +0 -1
  582. package/src/components/Form/Form.styles.ts +0 -17
  583. package/src/components/Form/FormActions.tsx +0 -62
  584. package/src/components/Form/index.ts +0 -4
  585. package/src/components/Header/PageHeader/PageHeader.stories.tsx +0 -97
  586. package/src/components/Header/PageHeader/PageHeader.styles.ts +0 -126
  587. package/src/components/Header/PageHeader/PageHeader.tsx +0 -15
  588. package/src/components/Header/PageHeader/PageHeaderActions.tsx +0 -17
  589. package/src/components/Header/PageHeader/PageHeaderMain.tsx +0 -15
  590. package/src/components/Header/PageHeader/PageHeaderMenu.tsx +0 -15
  591. package/src/components/Header/PageHeader/PageHeaderMessage.tsx +0 -32
  592. package/src/components/Header/PageHeader/PageHeaderTitle.tsx +0 -47
  593. package/src/components/Header/PageHeader/index.ts +0 -14
  594. package/src/components/Header/index.ts +0 -1
  595. package/src/components/Icon/Icon.styles.ts +0 -0
  596. package/src/components/Icon/Icon.tsx +0 -2
  597. package/src/components/Icon/index.ts +0 -0
  598. package/src/components/Inputs/Switch/Switch.stories.tsx +0 -22
  599. package/src/components/Inputs/Switch/Switch.styles.ts +0 -13
  600. package/src/components/Inputs/Switch/Switch.tsx +0 -18
  601. package/src/components/Inputs/index.ts +0 -1
  602. package/src/components/ItemComposition/Item.tsx +0 -41
  603. package/src/components/ItemComposition/ItemComposition.cypress.spec.tsx +0 -113
  604. package/src/components/ItemComposition/ItemComposition.stories.tsx +0 -94
  605. package/src/components/ItemComposition/ItemComposition.styles.ts +0 -62
  606. package/src/components/ItemComposition/ItemComposition.tsx +0 -71
  607. package/src/components/ItemComposition/index.ts +0 -6
  608. package/src/components/Layout/AreaIndicator.styles.ts +0 -33
  609. package/src/components/Layout/AreaIndicator.tsx +0 -35
  610. package/src/components/Layout/PageLayout/PageLayout.stories.tsx +0 -81
  611. package/src/components/Layout/PageLayout/PageLayout.styles.ts +0 -41
  612. package/src/components/Layout/PageLayout/PageLayout.tsx +0 -21
  613. package/src/components/Layout/PageLayout/PageLayoutActions.tsx +0 -25
  614. package/src/components/Layout/PageLayout/PageLayoutBody.tsx +0 -25
  615. package/src/components/Layout/PageLayout/PageLayoutHeader.tsx +0 -19
  616. package/src/components/Layout/PageLayout/PageQuickAccess.tsx +0 -75
  617. package/src/components/Layout/PageLayout/index.ts +0 -12
  618. package/src/components/Layout/PageLayout.cypress.spec.tsx +0 -66
  619. package/src/components/Layout/index.ts +0 -1
  620. package/src/components/List/Item/Avatar.tsx +0 -21
  621. package/src/components/List/Item/AvatarSkeleton.tsx +0 -17
  622. package/src/components/List/Item/ListItem.stories.tsx +0 -41
  623. package/src/components/List/Item/ListItem.styles.ts +0 -63
  624. package/src/components/List/Item/ListItem.tsx +0 -34
  625. package/src/components/List/Item/Text.tsx +0 -27
  626. package/src/components/List/Item/TextSkeleton.tsx +0 -22
  627. package/src/components/List/Item/index.ts +0 -14
  628. package/src/components/List/List.stories.tsx +0 -72
  629. package/src/components/List/List.styles.ts +0 -8
  630. package/src/components/List/List.tsx +0 -19
  631. package/src/components/List/index.ts +0 -6
  632. package/src/components/Menu/Button/MenuButton.stories.tsx +0 -16
  633. package/src/components/Menu/Button/MenuButton.styles.ts +0 -27
  634. package/src/components/Menu/Button/MenuButton.tsx +0 -67
  635. package/src/components/Menu/Button/index.ts +0 -1
  636. package/src/components/Menu/Menu.stories.tsx +0 -71
  637. package/src/components/Menu/Menu.styles.ts +0 -68
  638. package/src/components/Menu/Menu.tsx +0 -25
  639. package/src/components/Menu/MenuDivider.tsx +0 -13
  640. package/src/components/Menu/MenuItem.tsx +0 -38
  641. package/src/components/Menu/MenuItems.tsx +0 -36
  642. package/src/components/Menu/index.ts +0 -12
  643. package/src/components/Menu/useMenu.tsx +0 -79
  644. package/src/components/Modal/ConfirmationModal/ConfirmationModal.cypress.spec.tsx +0 -168
  645. package/src/components/Modal/ConfirmationModal/ConfirmationModal.stories.tsx +0 -62
  646. package/src/components/Modal/ConfirmationModal/ConfirmationModal.tsx +0 -87
  647. package/src/components/Modal/Modal.stories.tsx +0 -142
  648. package/src/components/Modal/Modal.styles.ts +0 -96
  649. package/src/components/Modal/Modal.tsx +0 -79
  650. package/src/components/Modal/ModalActions.tsx +0 -64
  651. package/src/components/Modal/ModalBody.tsx +0 -15
  652. package/src/components/Modal/ModalHeader.tsx +0 -26
  653. package/src/components/Modal/index.ts +0 -14
  654. package/src/components/README.md +0 -3
  655. package/src/components/Tabs/Tab.styles.ts +0 -25
  656. package/src/components/Tabs/TabPanel.tsx +0 -22
  657. package/src/components/Tabs/Tabs.cypress.spec.tsx +0 -70
  658. package/src/components/Tabs/Tabs.stories.tsx +0 -55
  659. package/src/components/Tabs/Tabs.tsx +0 -55
  660. package/src/components/Tabs/index.ts +0 -6
  661. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +0 -62
  662. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.styles.tsx +0 -22
  663. package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +0 -68
  664. package/src/components/Tooltip/ConfirmationTooltip/TooltipContent.tsx +0 -31
  665. package/src/components/Tooltip/ConfirmationTooltip/index.ts +0 -1
  666. package/src/components/Tooltip/ConfirmationTooltip/models.ts +0 -18
  667. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.stories.tsx +0 -70
  668. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.styles.ts +0 -5
  669. package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.tsx +0 -115
  670. package/src/components/Tooltip/TextOverflowTooltip/index.tsx +0 -1
  671. package/src/components/Tooltip/Tooltip.stories.tsx +0 -41
  672. package/src/components/Tooltip/Tooltip.tsx +0 -57
  673. package/src/components/Tooltip/index.ts +0 -2
  674. package/src/components/Zoom/Minimap.tsx +0 -129
  675. package/src/components/Zoom/Zoom.cypress.spec.tsx +0 -246
  676. package/src/components/Zoom/Zoom.stories.tsx +0 -115
  677. package/src/components/Zoom/Zoom.styles.tsx +0 -68
  678. package/src/components/Zoom/Zoom.tsx +0 -64
  679. package/src/components/Zoom/ZoomContent.tsx +0 -170
  680. package/src/components/Zoom/constants.ts +0 -2
  681. package/src/components/Zoom/localPoint.ts +0 -51
  682. package/src/components/Zoom/models.ts +0 -25
  683. package/src/components/Zoom/useMinimap.ts +0 -156
  684. package/src/components/Zoom/useZoom.ts +0 -70
  685. package/src/components/Zoom/utils.ts +0 -55
  686. package/src/components/index.ts +0 -16
  687. package/src/styles/tokens/themes/_ui-dark.tokens.json +0 -563
  688. package/src/styles/tokens/themes/_ui-light.tokens.json +0 -563
  689. package/src/utils/centreonBaseURL.ts +0 -4
  690. package/src/utils/docsURL.ts +0 -31
  691. package/src/utils/index.ts +0 -30
  692. package/src/utils/panelSize.ts +0 -15
  693. package/src/utils/resourcesStatusURL.ts +0 -169
  694. package/src/utils/sanitizedHTML.ts +0 -18
  695. package/src/utils/translatedLabel.ts +0 -2
  696. package/src/utils/useFullscreen/Fullscreen.cypress.spec.tsx +0 -130
  697. package/src/utils/useFullscreen/atoms.ts +0 -3
  698. package/src/utils/useFullscreen/index.ts +0 -2
  699. package/src/utils/useFullscreen/translatedLabels.ts +0 -1
  700. package/src/utils/useFullscreen/useFullscreen.ts +0 -73
  701. package/src/utils/useFullscreen/useFullscreenListener.ts +0 -62
  702. package/src/utils/useInfiniteScrollListing.ts +0 -129
  703. package/src/utils/useLicenseExpirationWarning.test.tsx +0 -148
  704. package/src/utils/useLicenseExpirationWarning.ts +0 -52
  705. package/src/utils/useLocaleTimezoneDate/LocaleTimezoneDate.cypress.spec.tsx +0 -98
  706. package/src/utils/useLocaleTimezoneDate/useLocaleTimezoneDate.ts +0 -41
  707. package/src/utils/usePluralizedTranslation.test.ts +0 -159
  708. package/src/utils/usePluralizedTranslation.ts +0 -38
  709. package/src/utils/useRefreshInterval.ts +0 -39
  710. package/src/utils/useResizeObserver.ts +0 -6
  711. package/src/utils/useThresholds.ts +0 -0
  712. /package/{public/brand → assets}/centreon-logo-one-line-dark.svg +0 -0
  713. /package/{public/brand → assets}/centreon-logo-one-line-light.svg +0 -0
  714. /package/{src/@assets/images → assets}/not-authorized-template-background-dark.svg +0 -0
  715. /package/{src/@assets/images → assets}/not-authorized-template-background-light.svg +0 -0
  716. /package/{src/fonts → fonts/fonts-generated}/roboto-bold-webfont.ttf +0 -0
  717. /package/{src/fonts → fonts/fonts-generated}/roboto-bold-webfont.woff +0 -0
  718. /package/{src/fonts → fonts/fonts-generated}/roboto-bold-webfont.woff2 +0 -0
  719. /package/{src/fonts → fonts/fonts-generated}/roboto-light-webfont.ttf +0 -0
  720. /package/{src/fonts → fonts/fonts-generated}/roboto-light-webfont.woff +0 -0
  721. /package/{src/fonts → fonts/fonts-generated}/roboto-light-webfont.woff2 +0 -0
  722. /package/{src/fonts → fonts/fonts-generated}/roboto-medium-webfont.ttf +0 -0
  723. /package/{src/fonts → fonts/fonts-generated}/roboto-medium-webfont.woff +0 -0
  724. /package/{src/fonts → fonts/fonts-generated}/roboto-medium-webfont.woff2 +0 -0
  725. /package/{src/fonts → fonts/fonts-generated}/roboto-regular-webfont.ttf +0 -0
  726. /package/{src/fonts → fonts/fonts-generated}/roboto-regular-webfont.woff +0 -0
  727. /package/{src/fonts → fonts/fonts-generated}/roboto-regular-webfont.woff2 +0 -0
@@ -1,2320 +0,0 @@
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
- ["Last:111.43"],
337
- ["Min:10.41"],
338
- ["Max:182.71"],
339
- ["Average:61.78"]
340
- ],
341
- "last_value": 111.43,
342
- "minimum_value": 10.41,
343
- "maximum_value": 182.71,
344
- "average_value": 61.78
345
- },
346
- {
347
- "index_id": 152032,
348
- "metric_id": 16196,
349
- "metric": "connection_fit",
350
- "metric_legend": "connection_fit",
351
- "unit": "",
352
- "hidden": 0,
353
- "min": null,
354
- "max": null,
355
- "virtual": 0,
356
- "ds_data": {
357
- "ds_min": "1",
358
- "ds_max": "1",
359
- "ds_minmax_int": "0",
360
- "ds_last": "1",
361
- "ds_average": "1",
362
- "ds_total": "0",
363
- "ds_tickness": 1,
364
- "ds_color_line_mode": "1",
365
- "ds_color_line": "#9933ff"
366
- },
367
- "legend": "connection_fit",
368
- "stack": 0,
369
- "warn": null,
370
- "warn_low": null,
371
- "crit": null,
372
- "crit_low": null,
373
- "ds_color_area_warn": "#ff9a13",
374
- "ds_color_area_crit": "#e00b3d",
375
- "ds_order": 0,
376
- "data": [
377
- 130.99763333,
378
- 131.10763333,
379
- 131.1778,
380
- 131.08643333,
381
- 130.95643333,
382
- 125.59233333,
383
- 98.3463,
384
- 65.8563,
385
- 37.923233333,
386
- 29.0145,
387
- 24.6645,
388
- 21.015566667,
389
- 20.31,
390
- 20.31,
391
- 20.270166667,
392
- 20.060833333,
393
- 19.810833333,
394
- 19.5688,
395
- 19.3527,
396
- 19.1427,
397
- 18.964566667,
398
- 18.93,
399
- 18.93,
400
- 18.93,
401
- 18.93,
402
- 18.93,
403
- 18.969833333,
404
- 19.139333333,
405
- 19.3473,
406
- 19.493566667,
407
- 19.3527,
408
- 19.1427,
409
- 18.964566667,
410
- 18.93,
411
- 18.93,
412
- 18.93,
413
- 18.93,
414
- 18.93,
415
- 18.969833333,
416
- 19.139333333,
417
- 19.3473,
418
- 19.493566667,
419
- 19.3527,
420
- 19.1427,
421
- 18.964566667,
422
- 18.93,
423
- 18.93,
424
- 18.93,
425
- 18.93,
426
- 18.93,
427
- 18.969833333,
428
- 19.139333333,
429
- 19.3473,
430
- 19.493566667,
431
- 19.3527,
432
- 19.1427,
433
- 18.964566667,
434
- 18.93,
435
- 18.93,
436
- 18.93,
437
- 18.93,
438
- 18.93,
439
- 18.969833333,
440
- 19.139333333,
441
- 19.3473,
442
- 19.493566667,
443
- 19.3527,
444
- 19.1427,
445
- 18.964566667,
446
- 18.93,
447
- 18.93,
448
- 18.93,
449
- 18.93,
450
- 18.93,
451
- 18.969833333,
452
- 19.139333333,
453
- 19.3473,
454
- 19.493566667,
455
- 19.3527,
456
- 19.1427,
457
- 18.964566667,
458
- 18.93,
459
- 18.93,
460
- 18.93,
461
- 18.93,
462
- 18.93,
463
- 18.969833333,
464
- 19.155266667,
465
- 19.375266667,
466
- 19.523566667,
467
- 19.3827,
468
- 19.1727,
469
- 18.994566667,
470
- 18.96,
471
- 18.96,
472
- 18.96,
473
- 18.96,
474
- 18.96,
475
- 19.0556,
476
- 19.550033333,
477
- 20.140033333,
478
- 20.634433333,
479
- 20.73,
480
- 20.73,
481
- 20.722033333,
482
- 20.656266667,
483
- 20.584233333,
484
- 20.554066667,
485
- 20.6695,
486
- 20.8195,
487
- 20.8978,
488
- 20.663033333,
489
- 20.345066667,
490
- 20.0888,
491
- 20.04,
492
- 20.04,
493
- 20.04,
494
- 20.047966667,
495
- 20.057966667,
496
- 20.1078,
497
- 20.295266667,
498
- 20.523233333,
499
- 20.673566667,
500
- 20.5088,
501
- 20.276766667,
502
- 20.078633333,
503
- 20.04,
504
- 20.04,
505
- 20.04,
506
- 20.047966667,
507
- 20.057966667,
508
- 20.1078,
509
- 20.295266667,
510
- 20.523233333,
511
- 20.673566667,
512
- 20.5096,
513
- 20.2696,
514
- 20.069266667,
515
- 20.03,
516
- 20.03,
517
- 20.03,
518
- 20.045866667,
519
- 20.057933333,
520
- 20.091733333,
521
- 20.234866667,
522
- 20.396933333,
523
- 20.509333333,
524
- 20.371333333,
525
- 20.171333333,
526
- 20.003066667,
527
- 19.97,
528
- 19.97,
529
- 19.97,
530
- 19.977933333,
531
- 19.987933333,
532
- 20.005866667,
533
- 20.065533333,
534
- 20.1276,
535
- 20.179666667,
536
- 20.150333333,
537
- 20.108266667,
538
- 20.0762,
539
- 20.07,
540
- 20.07,
541
- 20.07,
542
- 20.077933333,
543
- 20.087933333,
544
- 20.105866667,
545
- 20.165533333,
546
- 20.2276,
547
- 20.24,
548
- 20.041666667,
549
- 19.783733333,
550
- 19.571333333,
551
- 19.53,
552
- 19.53,
553
- 19.537933333,
554
- 19.547933333,
555
- 19.557933333,
556
- 19.567933333,
557
- 19.5938,
558
- 19.631733333,
559
- 19.8304,
560
- 20.7368,
561
- 21.808866667,
562
- 27.519866667,
563
- 45.074866667,
564
- 81.596266667,
565
- 107.08186667,
566
- 115.47386667,
567
- 119.99193333,
568
- 123.8156,
569
- 124.61126667,
570
- 124.72126667,
571
- 125.02846667,
572
- 126.20293333,
573
- 127.56486667,
574
- 128.757,
575
- 129.16253333,
576
- 129.38253333,
577
- 129.5658,
578
- 129.5842,
579
- 129.5542,
580
- 129.5474,
581
- 129.64126667,
582
- 129.75126667,
583
- 129.93666667,
584
- 130.456,
585
- 131.056,
586
- 131.56126667,
587
- 131.65,
588
- 131.65,
589
- 131.64613333,
590
- 131.6242,
591
- 131.59613333,
592
- 131.59546667,
593
- 131.68126667,
594
- 131.79126667,
595
- 131.85486667,
596
- 131.7152,
597
- 131.5352,
598
- 131.3842,
599
- 131.36,
600
- 131.36,
601
- 131.35613333,
602
- 131.3342,
603
- 131.3042,
604
- 131.2974,
605
- 131.38933333,
606
- 131.49126667,
607
- 131.57226667,
608
- 131.52453333,
609
- 131.4426,
610
- 131.36806667,
611
- 131.36,
612
- 131.36,
613
- 131.35613333,
614
- 131.3342,
615
- 131.3042,
616
- 131.2974,
617
- 131.38933333,
618
- 131.49126667,
619
- 131.57226667,
620
- 131.52453333,
621
- 131.4426,
622
- 131.36806667,
623
- 131.36,
624
- 131.36,
625
- 131.35613333,
626
- 131.3342,
627
- 131.3042,
628
- 131.2974,
629
- 131.38933333,
630
- 131.49126667,
631
- 131.59546667,
632
- 131.67353333,
633
- 131.7416,
634
- 131.79193333,
635
- 131.8,
636
- 131.8,
637
- 131.79613333,
638
- 131.77613333,
639
- 131.7542,
640
- 131.74546667,
641
- 131.83126667,
642
- 131.94126667,
643
- 132.02226667,
644
- 131.9726,
645
- 131.88453333,
646
- 131.81613333,
647
- 131.8,
648
- 131.8,
649
- 131.79613333,
650
- 131.77613333,
651
- 131.7542,
652
- 131.74546667,
653
- 131.83126667,
654
- 131.94126667,
655
- 132.02226667,
656
- 131.9726,
657
- 131.88453333,
658
- 131.81613333,
659
- 131.8,
660
- 131.8,
661
- 131.79613333,
662
- 131.77613333,
663
- 131.7542,
664
- null,
665
- null
666
- ],
667
- "prints": [
668
- ["Last:131.75"],
669
- ["Min:18.93"],
670
- ["Max:132.02"],
671
- ["Average:61.08"]
672
- ],
673
- "last_value": 131.75,
674
- "minimum_value": 18.93,
675
- "maximum_value": 132.02,
676
- "average_value": 61.08
677
- },
678
- {
679
- "index_id": 152032,
680
- "metric_id": 16197,
681
- "metric": "connection_lower_margin",
682
- "metric_legend": "connection_lower_margin",
683
- "unit": "",
684
- "hidden": 0,
685
- "min": null,
686
- "max": null,
687
- "virtual": 0,
688
- "ds_data": {
689
- "ds_min": "1",
690
- "ds_max": "1",
691
- "ds_minmax_int": "0",
692
- "ds_last": "1",
693
- "ds_average": "1",
694
- "ds_total": "0",
695
- "ds_tickness": 1,
696
- "ds_color_line_mode": "1",
697
- "ds_color_line": "#00ff99"
698
- },
699
- "legend": "connection_lower_margin",
700
- "stack": 0,
701
- "warn": null,
702
- "warn_low": null,
703
- "crit": null,
704
- "crit_low": null,
705
- "ds_color_area_warn": "#ff9a13",
706
- "ds_color_area_crit": "#e00b3d",
707
- "ds_order": 0,
708
- "data": [
709
- -92.84,
710
- -92.84,
711
- -92.84,
712
- -92.84,
713
- -92.84,
714
- -88.792933333,
715
- -67.8513,
716
- -42.869266667,
717
- -21.928366667,
718
- -17.88,
719
- -17.88,
720
- -17.88,
721
- -17.88,
722
- -17.88,
723
- -17.88,
724
- -17.88,
725
- -17.88,
726
- -17.88,
727
- -17.88,
728
- -17.88,
729
- -17.88,
730
- -17.88,
731
- -17.88,
732
- -17.88,
733
- -17.88,
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
- -21.9736,
895
- -36.769466667,
896
- -67.8514,
897
- -88.9438,
898
- -92.84,
899
- -92.84,
900
- -92.84,
901
- -92.84,
902
- -92.84,
903
- -92.84,
904
- -92.84,
905
- -92.84,
906
- -92.84,
907
- -92.84,
908
- -92.84,
909
- -92.84,
910
- -92.84,
911
- -92.84,
912
- -92.84,
913
- -92.84,
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
- null,
997
- null
998
- ],
999
- "prints": [
1000
- ["Last:-92.84"],
1001
- ["Min:-92.84"],
1002
- ["Max:-17.88"],
1003
- ["Average:-45.81"]
1004
- ],
1005
- "last_value": null,
1006
- "minimum_value": null,
1007
- "maximum_value": null,
1008
- "average_value": null
1009
- },
1010
- {
1011
- "index_id": 152032,
1012
- "metric_id": 16198,
1013
- "metric": "connection_upper_margin",
1014
- "metric_legend": "connection_upper_margin",
1015
- "unit": "",
1016
- "hidden": 0,
1017
- "min": null,
1018
- "max": null,
1019
- "virtual": 0,
1020
- "ds_data": {
1021
- "ds_min": "1",
1022
- "ds_max": "1",
1023
- "ds_minmax_int": "0",
1024
- "ds_last": "1",
1025
- "ds_average": "1",
1026
- "ds_total": "0",
1027
- "ds_tickness": 1,
1028
- "ds_color_line_mode": "1",
1029
- "ds_color_line": "#9900ff"
1030
- },
1031
- "legend": "connection_upper_margin",
1032
- "stack": 0,
1033
- "warn": null,
1034
- "warn_low": null,
1035
- "crit": null,
1036
- "crit_low": null,
1037
- "ds_color_area_warn": "#ff9a13",
1038
- "ds_color_area_crit": "#e00b3d",
1039
- "ds_order": 0,
1040
- "data": [
1041
- 80.19,
1042
- 80.19,
1043
- 80.19,
1044
- 80.19,
1045
- 80.19,
1046
- 76.405833333,
1047
- 56.8458,
1048
- 33.497833333,
1049
- 13.932,
1050
- 10.15,
1051
- 10.15,
1052
- 10.15,
1053
- 10.15,
1054
- 10.15,
1055
- 10.15,
1056
- 10.15,
1057
- 10.15,
1058
- 10.15,
1059
- 10.15,
1060
- 10.15,
1061
- 10.15,
1062
- 10.15,
1063
- 10.15,
1064
- 10.15,
1065
- 10.15,
1066
- 10.15,
1067
- 10.15,
1068
- 10.15,
1069
- 10.15,
1070
- 10.15,
1071
- 10.15,
1072
- 10.15,
1073
- 10.15,
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
- 13.9818,
1227
- 27.801,
1228
- 56.8424,
1229
- 76.543866667,
1230
- 80.19,
1231
- 80.19,
1232
- 80.19,
1233
- 80.19,
1234
- 80.19,
1235
- 80.19,
1236
- 80.19,
1237
- 80.19,
1238
- 80.19,
1239
- 80.19,
1240
- 80.19,
1241
- 80.19,
1242
- 80.19,
1243
- 80.19,
1244
- 80.19,
1245
- 80.19,
1246
- 80.19,
1247
- 80.19,
1248
- 80.19,
1249
- 80.19,
1250
- 80.19,
1251
- 80.19,
1252
- 80.19,
1253
- 80.19,
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
- null,
1329
- null
1330
- ],
1331
- "prints": [
1332
- ["Last:80.19"],
1333
- ["Min:10.15"],
1334
- ["Max:80.19"],
1335
- ["Average:36.24"]
1336
- ],
1337
- "last_value": 80.19,
1338
- "minimum_value": 10.15,
1339
- "maximum_value": 80.19,
1340
- "average_value": 36.24
1341
- },
1342
- {
1343
- "index_id": 152032,
1344
- "metric_id": 15177,
1345
- "metric": "connection_lower_thresholds",
1346
- "metric_legend": "connection_lower_thresholds",
1347
- "unit": "",
1348
- "hidden": 0,
1349
- "min": null,
1350
- "max": null,
1351
- "virtual": 0,
1352
- "ds_data": {
1353
- "compo_id": 50,
1354
- "host_id": null,
1355
- "service_id": null,
1356
- "name": "Anomaly Lower Threshold",
1357
- "ds_order": 1,
1358
- "ds_hidecurve": null,
1359
- "ds_name": ".*_lower_thresholds",
1360
- "ds_color_line": "#D728C9",
1361
- "ds_color_line_mode": "0",
1362
- "ds_color_area": "#FFFFFF",
1363
- "ds_color_area_warn": "#F8C706",
1364
- "ds_color_area_crit": "#F91E05",
1365
- "ds_filled": null,
1366
- "ds_max": null,
1367
- "ds_min": null,
1368
- "ds_minmax_int": null,
1369
- "ds_average": null,
1370
- "ds_last": null,
1371
- "ds_total": null,
1372
- "ds_tickness": 2,
1373
- "ds_transparency": "80",
1374
- "ds_invert": null,
1375
- "ds_legend": "Lower Threshold",
1376
- "ds_jumpline": "0",
1377
- "ds_stack": null,
1378
- "default_tpl1": null,
1379
- "comment": null
1380
- },
1381
- "legend": "Lower Threshold",
1382
- "stack": 0,
1383
- "warn": null,
1384
- "warn_low": null,
1385
- "crit": null,
1386
- "crit_low": null,
1387
- "ds_order": 1,
1388
- "data": [
1389
- -147.52236667,
1390
- -147.41236667,
1391
- -147.3422,
1392
- -147.43356667,
1393
- -147.56356667,
1394
- -140.79443333,
1395
- -105.2176,
1396
- -62.745566667,
1397
- -27.859833333,
1398
- -24.6255,
1399
- -28.9755,
1400
- -32.624433333,
1401
- -33.33,
1402
- -33.33,
1403
- -33.369833333,
1404
- -33.579166667,
1405
- -33.829166667,
1406
- -34.0712,
1407
- -34.2873,
1408
- -34.4973,
1409
- -34.667466667,
1410
- -34.7,
1411
- -34.7,
1412
- -34.7,
1413
- -34.7,
1414
- -34.7,
1415
- -34.668133333,
1416
- -34.4927,
1417
- -34.2827,
1418
- -34.1444,
1419
- -34.2873,
1420
- -34.4973,
1421
- -34.667466667,
1422
- -34.7,
1423
- -34.7,
1424
- -34.7,
1425
- -34.7,
1426
- -34.7,
1427
- -34.668133333,
1428
- -34.4927,
1429
- -34.2827,
1430
- -34.1444,
1431
- -34.2873,
1432
- -34.4973,
1433
- -34.667466667,
1434
- -34.7,
1435
- -34.7,
1436
- -34.7,
1437
- -34.7,
1438
- -34.7,
1439
- -34.668133333,
1440
- -34.4927,
1441
- -34.2827,
1442
- -34.1444,
1443
- -34.2873,
1444
- -34.4973,
1445
- -34.667466667,
1446
- -34.7,
1447
- -34.7,
1448
- -34.7,
1449
- -34.7,
1450
- -34.7,
1451
- -34.668133333,
1452
- -34.4927,
1453
- -34.2827,
1454
- -34.1444,
1455
- -34.2873,
1456
- -34.4973,
1457
- -34.667466667,
1458
- -34.7,
1459
- -34.7,
1460
- -34.7,
1461
- -34.7,
1462
- -34.7,
1463
- -34.668133333,
1464
- -34.4927,
1465
- -34.2827,
1466
- -34.1444,
1467
- -34.2873,
1468
- -34.4973,
1469
- -34.667466667,
1470
- -34.7,
1471
- -34.7,
1472
- -34.7,
1473
- -34.7,
1474
- -34.7,
1475
- -34.668133333,
1476
- -34.484733333,
1477
- -34.264733333,
1478
- -34.116433333,
1479
- -34.2573,
1480
- -34.4673,
1481
- -34.637466667,
1482
- -34.67,
1483
- -34.67,
1484
- -34.67,
1485
- -34.67,
1486
- -34.67,
1487
- -34.5744,
1488
- -34.079966667,
1489
- -33.497933333,
1490
- -33.005566667,
1491
- -32.91,
1492
- -32.91,
1493
- -32.917966667,
1494
- -32.975766667,
1495
- -33.045766667,
1496
- -33.0839,
1497
- -32.9705,
1498
- -32.8205,
1499
- -32.7422,
1500
- -32.976966667,
1501
- -33.286966667,
1502
- -33.549166667,
1503
- -33.6,
1504
- -33.6,
1505
- -33.6,
1506
- -33.592033333,
1507
- -33.582033333,
1508
- -33.5322,
1509
- -33.344733333,
1510
- -33.116766667,
1511
- -32.966433333,
1512
- -33.123233333,
1513
- -33.3612,
1514
- -33.561366667,
1515
- -33.6,
1516
- -33.6,
1517
- -33.6,
1518
- -33.592033333,
1519
- -33.582033333,
1520
- -33.5322,
1521
- -33.344733333,
1522
- -33.116766667,
1523
- -32.966433333,
1524
- -33.1304,
1525
- -33.3704,
1526
- -33.5628,
1527
- -33.6,
1528
- -33.6,
1529
- -33.6,
1530
- -33.592066667,
1531
- -33.582066667,
1532
- -33.548266667,
1533
- -33.405133333,
1534
- -33.235133333,
1535
- -33.1286,
1536
- -33.268666667,
1537
- -33.468666667,
1538
- -33.636933333,
1539
- -33.67,
1540
- -33.67,
1541
- -33.67,
1542
- -33.662066667,
1543
- -33.652066667,
1544
- -33.6262,
1545
- -33.5724,
1546
- -33.504466667,
1547
- -33.458266667,
1548
- -33.481733333,
1549
- -33.529666667,
1550
- -33.5638,
1551
- -33.57,
1552
- -33.57,
1553
- -33.57,
1554
- -33.562066667,
1555
- -33.552066667,
1556
- -33.5262,
1557
- -33.4724,
1558
- -33.404466667,
1559
- -33.39,
1560
- -33.596266667,
1561
- -33.848333333,
1562
- -34.058666667,
1563
- -34.1,
1564
- -34.1,
1565
- -34.1,
1566
- -34.092066667,
1567
- -34.082066667,
1568
- -34.064133333,
1569
- -34.0362,
1570
- -34.0062,
1571
- -33.801666667,
1572
- -32.901133333,
1573
- -31.831133333,
1574
- -38.408866667,
1575
- -65.231533333,
1576
- -121.966,
1577
- -159.74953333,
1578
- -163.04806667,
1579
- -158.53613333,
1580
- -154.7044,
1581
- -153.90873333,
1582
- -153.79873333,
1583
- -153.49346667,
1584
- -152.32513333,
1585
- -150.95513333,
1586
- -149.76493333,
1587
- -149.36553333,
1588
- -149.13746667,
1589
- -148.95613333,
1590
- -148.94386667,
1591
- -148.9658,
1592
- -148.97453333,
1593
- -148.88873333,
1594
- -148.77873333,
1595
- -148.5914,
1596
- -148.06593333,
1597
- -147.474,
1598
- -146.9668,
1599
- -146.87,
1600
- -146.87,
1601
- -146.87386667,
1602
- -146.8958,
1603
- -146.9258,
1604
- -146.9326,
1605
- -146.83873333,
1606
- -146.72873333,
1607
- -146.66513333,
1608
- -146.8048,
1609
- -146.9848,
1610
- -147.13773333,
1611
- -147.17,
1612
- -147.17,
1613
- -147.17386667,
1614
- -147.1958,
1615
- -147.22386667,
1616
- -147.22453333,
1617
- -147.13873333,
1618
- -147.02873333,
1619
- -146.94966667,
1620
- -147.00546667,
1621
- -147.08546667,
1622
- -147.15386667,
1623
- -147.17,
1624
- -147.17,
1625
- -147.17386667,
1626
- -147.1958,
1627
- -147.22386667,
1628
- -147.22453333,
1629
- -147.13873333,
1630
- -147.02873333,
1631
- -146.94966667,
1632
- -147.00546667,
1633
- -147.08546667,
1634
- -147.15386667,
1635
- -147.17,
1636
- -147.17,
1637
- -147.17386667,
1638
- -147.1958,
1639
- -147.22386667,
1640
- -147.22453333,
1641
- -147.13873333,
1642
- -147.02873333,
1643
- -146.92453333,
1644
- -146.8484,
1645
- -146.78646667,
1646
- -146.72806667,
1647
- -146.72,
1648
- -146.72,
1649
- -146.72386667,
1650
- -146.7458,
1651
- -146.77386667,
1652
- -146.77453333,
1653
- -146.68873333,
1654
- -146.57873333,
1655
- -146.49966667,
1656
- -146.55546667,
1657
- -146.63546667,
1658
- -146.70386667,
1659
- -146.72,
1660
- -146.72,
1661
- -146.72386667,
1662
- -146.7458,
1663
- -146.77386667,
1664
- -146.77453333,
1665
- -146.68873333,
1666
- -146.57873333,
1667
- -146.49966667,
1668
- -146.55546667,
1669
- -146.63546667,
1670
- -146.70386667,
1671
- -146.72,
1672
- -146.72,
1673
- -146.72386667,
1674
- -146.7458,
1675
- -146.77386667,
1676
- null,
1677
- null
1678
- ],
1679
- "prints": [],
1680
- "last_value": null,
1681
- "minimum_value": null,
1682
- "maximum_value": null,
1683
- "average_value": null
1684
- },
1685
- {
1686
- "index_id": 152032,
1687
- "metric_id": 15178,
1688
- "metric": "connection_upper_thresholds",
1689
- "metric_legend": "connection_upper_thresholds",
1690
- "unit": "",
1691
- "hidden": 0,
1692
- "min": null,
1693
- "max": null,
1694
- "virtual": 0,
1695
- "ds_data": {
1696
- "compo_id": 51,
1697
- "host_id": null,
1698
- "service_id": null,
1699
- "name": "Anomaly Upper Threshold",
1700
- "ds_order": 1,
1701
- "ds_hidecurve": null,
1702
- "ds_name": ".*_upper_thresholds",
1703
- "ds_color_line": "#D728C9",
1704
- "ds_color_line_mode": "0",
1705
- "ds_color_area": "#FFFFFF",
1706
- "ds_color_area_warn": "#F8C706",
1707
- "ds_color_area_crit": "#F91E05",
1708
- "ds_filled": null,
1709
- "ds_max": null,
1710
- "ds_min": null,
1711
- "ds_minmax_int": null,
1712
- "ds_average": null,
1713
- "ds_last": null,
1714
- "ds_total": null,
1715
- "ds_tickness": 2,
1716
- "ds_transparency": "80",
1717
- "ds_invert": null,
1718
- "ds_legend": "Upper Threshold",
1719
- "ds_jumpline": "0",
1720
- "ds_stack": null,
1721
- "default_tpl1": null,
1722
- "comment": null
1723
- },
1724
- "legend": "Upper Threshold",
1725
- "stack": 0,
1726
- "warn": null,
1727
- "warn_low": null,
1728
- "crit": null,
1729
- "crit_low": null,
1730
- "ds_order": 1,
1731
- "data": [
1732
- 371.55763333,
1733
- 371.66763333,
1734
- 371.7378,
1735
- 371.64643333,
1736
- 371.5244,
1737
- 354.80983333,
1738
- 268.86776667,
1739
- 166.34573333,
1740
- 79.7272,
1741
- 59.4745,
1742
- 55.1245,
1743
- 51.475566667,
1744
- 50.77,
1745
- 50.77,
1746
- 50.730166667,
1747
- 50.520833333,
1748
- 50.270833333,
1749
- 50.020833333,
1750
- 49.810666667,
1751
- 49.6027,
1752
- 49.424566667,
1753
- 49.39,
1754
- 49.39,
1755
- 49.39,
1756
- 49.39,
1757
- 49.39,
1758
- 49.421866667,
1759
- 49.5973,
1760
- 49.8073,
1761
- 49.9456,
1762
- 49.810666667,
1763
- 49.6027,
1764
- 49.424566667,
1765
- 49.39,
1766
- 49.39,
1767
- 49.39,
1768
- 49.39,
1769
- 49.39,
1770
- 49.421866667,
1771
- 49.5973,
1772
- 49.8073,
1773
- 49.9456,
1774
- 49.810666667,
1775
- 49.6027,
1776
- 49.424566667,
1777
- 49.39,
1778
- 49.39,
1779
- 49.39,
1780
- 49.39,
1781
- 49.39,
1782
- 49.421866667,
1783
- 49.5973,
1784
- 49.8073,
1785
- 49.9456,
1786
- 49.810666667,
1787
- 49.6027,
1788
- 49.424566667,
1789
- 49.39,
1790
- 49.39,
1791
- 49.39,
1792
- 49.39,
1793
- 49.39,
1794
- 49.421866667,
1795
- 49.5973,
1796
- 49.8073,
1797
- 49.9456,
1798
- 49.810666667,
1799
- 49.6027,
1800
- 49.424566667,
1801
- 49.39,
1802
- 49.39,
1803
- 49.39,
1804
- 49.39,
1805
- 49.39,
1806
- 49.421866667,
1807
- 49.5973,
1808
- 49.8073,
1809
- 49.9456,
1810
- 49.810666667,
1811
- 49.6027,
1812
- 49.424566667,
1813
- 49.39,
1814
- 49.39,
1815
- 49.39,
1816
- 49.39,
1817
- 49.39,
1818
- 49.429833333,
1819
- 49.6073,
1820
- 49.825266667,
1821
- 49.981533333,
1822
- 49.8427,
1823
- 49.6327,
1824
- 49.454566667,
1825
- 49.42,
1826
- 49.42,
1827
- 49.42,
1828
- 49.42,
1829
- 49.42,
1830
- 49.5156,
1831
- 50.010033333,
1832
- 50.600033333,
1833
- 51.094433333,
1834
- 51.19,
1835
- 51.19,
1836
- 51.174066667,
1837
- 51.114233333,
1838
- 51.044233333,
1839
- 51.0061,
1840
- 51.127466667,
1841
- 51.2795,
1842
- 51.349833333,
1843
- 51.113033333,
1844
- 50.803033333,
1845
- 50.540833333,
1846
- 50.49,
1847
- 50.49,
1848
- 50.497966667,
1849
- 50.507966667,
1850
- 50.517966667,
1851
- 50.559833333,
1852
- 50.753233333,
1853
- 50.983233333,
1854
- 51.133566667,
1855
- 50.9688,
1856
- 50.7288,
1857
- 50.528633333,
1858
- 50.49,
1859
- 50.49,
1860
- 50.497966667,
1861
- 50.507966667,
1862
- 50.517966667,
1863
- 50.559833333,
1864
- 50.753233333,
1865
- 50.983233333,
1866
- 51.133566667,
1867
- 50.9696,
1868
- 50.7296,
1869
- 50.529266667,
1870
- 50.49,
1871
- 50.49,
1872
- 50.49,
1873
- 50.497933333,
1874
- 50.507933333,
1875
- 50.549666667,
1876
- 50.686933333,
1877
- 50.854866667,
1878
- 50.9614,
1879
- 50.821333333,
1880
- 50.621333333,
1881
- 50.453066667,
1882
- 50.42,
1883
- 50.42,
1884
- 50.427933333,
1885
- 50.437933333,
1886
- 50.447933333,
1887
- 50.465866667,
1888
- 50.525533333,
1889
- 50.5876,
1890
- 50.631733333,
1891
- 50.608266667,
1892
- 50.568266667,
1893
- 50.528266667,
1894
- 50.52,
1895
- 50.52,
1896
- 50.527933333,
1897
- 50.537933333,
1898
- 50.547933333,
1899
- 50.565866667,
1900
- 50.625533333,
1901
- 50.6876,
1902
- 50.7,
1903
- 50.501666667,
1904
- 50.243733333,
1905
- 50.031333333,
1906
- 49.99,
1907
- 49.99,
1908
- 49.99,
1909
- 49.997933333,
1910
- 50.007933333,
1911
- 50.025866667,
1912
- 50.0538,
1913
- 50.0838,
1914
- 50.288333333,
1915
- 51.188866667,
1916
- 52.2668,
1917
- 69.4594,
1918
- 128.4818,
1919
- 252.1254,
1920
- 336.7196,
1921
- 356.03386667,
1922
- 360.55193333,
1923
- 364.3756,
1924
- 365.17126667,
1925
- 365.28126667,
1926
- 365.58846667,
1927
- 366.76293333,
1928
- 368.12486667,
1929
- 369.317,
1930
- 369.72253333,
1931
- 369.94446667,
1932
- 370.13386667,
1933
- 370.1442,
1934
- 370.1142,
1935
- 370.1074,
1936
- 370.20126667,
1937
- 370.31126667,
1938
- 370.49666667,
1939
- 371.016,
1940
- 371.616,
1941
- 372.12126667,
1942
- 372.21,
1943
- 372.21,
1944
- 372.20613333,
1945
- 372.1842,
1946
- 372.15613333,
1947
- 372.15546667,
1948
- 372.24126667,
1949
- 372.35126667,
1950
- 372.4168,
1951
- 372.28326667,
1952
- 372.0952,
1953
- 371.9442,
1954
- 371.92,
1955
- 371.92,
1956
- 371.91613333,
1957
- 371.8942,
1958
- 371.8642,
1959
- 371.8574,
1960
- 371.95126667,
1961
- 372.06126667,
1962
- 372.14033333,
1963
- 372.08453333,
1964
- 372.0026,
1965
- 371.92806667,
1966
- 371.92,
1967
- 371.92,
1968
- 371.91613333,
1969
- 371.8942,
1970
- 371.8642,
1971
- 371.8574,
1972
- 371.95126667,
1973
- 372.06126667,
1974
- 372.14033333,
1975
- 372.08453333,
1976
- 372.0026,
1977
- 371.92806667,
1978
- 371.92,
1979
- 371.92,
1980
- 371.91613333,
1981
- 371.8942,
1982
- 371.8642,
1983
- 371.8574,
1984
- 371.95126667,
1985
- 372.06126667,
1986
- 372.16353333,
1987
- 372.23353333,
1988
- 372.3016,
1989
- 372.35386667,
1990
- 372.37,
1991
- 372.37,
1992
- 372.3642,
1993
- 372.33613333,
1994
- 372.3142,
1995
- 372.30546667,
1996
- 372.39126667,
1997
- 372.50126667,
1998
- 372.58226667,
1999
- 372.5326,
2000
- 372.44453333,
2001
- 372.37806667,
2002
- 372.37,
2003
- 372.37,
2004
- 372.3642,
2005
- 372.33613333,
2006
- 372.3142,
2007
- 372.30546667,
2008
- 372.39126667,
2009
- 372.50126667,
2010
- 372.58226667,
2011
- 372.5326,
2012
- 372.44453333,
2013
- 372.37806667,
2014
- 372.37,
2015
- 372.37,
2016
- 372.3642,
2017
- 372.33613333,
2018
- 372.3142,
2019
- null,
2020
- null
2021
- ],
2022
- "prints": [],
2023
- "last_value": null,
2024
- "minimum_value": null,
2025
- "maximum_value": null,
2026
- "average_value": null
2027
- }
2028
- ],
2029
- "times": [
2030
- "2023-06-14T17:35:00+02:00",
2031
- "2023-06-14T17:40:00+02:00",
2032
- "2023-06-14T17:45:00+02:00",
2033
- "2023-06-14T17:50:00+02:00",
2034
- "2023-06-14T17:55:00+02:00",
2035
- "2023-06-14T18:00:00+02:00",
2036
- "2023-06-14T18:05:00+02:00",
2037
- "2023-06-14T18:10:00+02:00",
2038
- "2023-06-14T18:15:00+02:00",
2039
- "2023-06-14T18:20:00+02:00",
2040
- "2023-06-14T18:25:00+02:00",
2041
- "2023-06-14T18:30:00+02:00",
2042
- "2023-06-14T18:35:00+02:00",
2043
- "2023-06-14T18:40:00+02:00",
2044
- "2023-06-14T18:45:00+02:00",
2045
- "2023-06-14T18:50:00+02:00",
2046
- "2023-06-14T18:55:00+02:00",
2047
- "2023-06-14T19:00:00+02:00",
2048
- "2023-06-14T19:05:00+02:00",
2049
- "2023-06-14T19:10:00+02:00",
2050
- "2023-06-14T19:15:00+02:00",
2051
- "2023-06-14T19:20:00+02:00",
2052
- "2023-06-14T19:25:00+02:00",
2053
- "2023-06-14T19:30:00+02:00",
2054
- "2023-06-14T19:35:00+02:00",
2055
- "2023-06-14T19:40:00+02:00",
2056
- "2023-06-14T19:45:00+02:00",
2057
- "2023-06-14T19:50:00+02:00",
2058
- "2023-06-14T19:55:00+02:00",
2059
- "2023-06-14T20:00:00+02:00",
2060
- "2023-06-14T20:05:00+02:00",
2061
- "2023-06-14T20:10:00+02:00",
2062
- "2023-06-14T20:15:00+02:00",
2063
- "2023-06-14T20:20:00+02:00",
2064
- "2023-06-14T20:25:00+02:00",
2065
- "2023-06-14T20:30:00+02:00",
2066
- "2023-06-14T20:35:00+02:00",
2067
- "2023-06-14T20:40:00+02:00",
2068
- "2023-06-14T20:45:00+02:00",
2069
- "2023-06-14T20:50:00+02:00",
2070
- "2023-06-14T20:55:00+02:00",
2071
- "2023-06-14T21:00:00+02:00",
2072
- "2023-06-14T21:05:00+02:00",
2073
- "2023-06-14T21:10:00+02:00",
2074
- "2023-06-14T21:15:00+02:00",
2075
- "2023-06-14T21:20:00+02:00",
2076
- "2023-06-14T21:25:00+02:00",
2077
- "2023-06-14T21:30:00+02:00",
2078
- "2023-06-14T21:35:00+02:00",
2079
- "2023-06-14T21:40:00+02:00",
2080
- "2023-06-14T21:45:00+02:00",
2081
- "2023-06-14T21:50:00+02:00",
2082
- "2023-06-14T21:55:00+02:00",
2083
- "2023-06-14T22:00:00+02:00",
2084
- "2023-06-14T22:05:00+02:00",
2085
- "2023-06-14T22:10:00+02:00",
2086
- "2023-06-14T22:15:00+02:00",
2087
- "2023-06-14T22:20:00+02:00",
2088
- "2023-06-14T22:25:00+02:00",
2089
- "2023-06-14T22:30:00+02:00",
2090
- "2023-06-14T22:35:00+02:00",
2091
- "2023-06-14T22:40:00+02:00",
2092
- "2023-06-14T22:45:00+02:00",
2093
- "2023-06-14T22:50:00+02:00",
2094
- "2023-06-14T22:55:00+02:00",
2095
- "2023-06-14T23:00:00+02:00",
2096
- "2023-06-14T23:05:00+02:00",
2097
- "2023-06-14T23:10:00+02:00",
2098
- "2023-06-14T23:15:00+02:00",
2099
- "2023-06-14T23:20:00+02:00",
2100
- "2023-06-14T23:25:00+02:00",
2101
- "2023-06-14T23:30:00+02:00",
2102
- "2023-06-14T23:35:00+02:00",
2103
- "2023-06-14T23:40:00+02:00",
2104
- "2023-06-14T23:45:00+02:00",
2105
- "2023-06-14T23:50:00+02:00",
2106
- "2023-06-14T23:55:00+02:00",
2107
- "2023-06-15T00:00:00+02:00",
2108
- "2023-06-15T00:05:00+02:00",
2109
- "2023-06-15T00:10:00+02:00",
2110
- "2023-06-15T00:15:00+02:00",
2111
- "2023-06-15T00:20:00+02:00",
2112
- "2023-06-15T00:25:00+02:00",
2113
- "2023-06-15T00:30:00+02:00",
2114
- "2023-06-15T00:35:00+02:00",
2115
- "2023-06-15T00:40:00+02:00",
2116
- "2023-06-15T00:45:00+02:00",
2117
- "2023-06-15T00:50:00+02:00",
2118
- "2023-06-15T00:55:00+02:00",
2119
- "2023-06-15T01:00:00+02:00",
2120
- "2023-06-15T01:05:00+02:00",
2121
- "2023-06-15T01:10:00+02:00",
2122
- "2023-06-15T01:15:00+02:00",
2123
- "2023-06-15T01:20:00+02:00",
2124
- "2023-06-15T01:25:00+02:00",
2125
- "2023-06-15T01:30:00+02:00",
2126
- "2023-06-15T01:35:00+02:00",
2127
- "2023-06-15T01:40:00+02:00",
2128
- "2023-06-15T01:45:00+02:00",
2129
- "2023-06-15T01:50:00+02:00",
2130
- "2023-06-15T01:55:00+02:00",
2131
- "2023-06-15T02:00:00+02:00",
2132
- "2023-06-15T02:05:00+02:00",
2133
- "2023-06-15T02:10:00+02:00",
2134
- "2023-06-15T02:15:00+02:00",
2135
- "2023-06-15T02:20:00+02:00",
2136
- "2023-06-15T02:25:00+02:00",
2137
- "2023-06-15T02:30:00+02:00",
2138
- "2023-06-15T02:35:00+02:00",
2139
- "2023-06-15T02:40:00+02:00",
2140
- "2023-06-15T02:45:00+02:00",
2141
- "2023-06-15T02:50:00+02:00",
2142
- "2023-06-15T02:55:00+02:00",
2143
- "2023-06-15T03:00:00+02:00",
2144
- "2023-06-15T03:05:00+02:00",
2145
- "2023-06-15T03:10:00+02:00",
2146
- "2023-06-15T03:15:00+02:00",
2147
- "2023-06-15T03:20:00+02:00",
2148
- "2023-06-15T03:25:00+02:00",
2149
- "2023-06-15T03:30:00+02:00",
2150
- "2023-06-15T03:35:00+02:00",
2151
- "2023-06-15T03:40:00+02:00",
2152
- "2023-06-15T03:45:00+02:00",
2153
- "2023-06-15T03:50:00+02:00",
2154
- "2023-06-15T03:55:00+02:00",
2155
- "2023-06-15T04:00:00+02:00",
2156
- "2023-06-15T04:05:00+02:00",
2157
- "2023-06-15T04:10:00+02:00",
2158
- "2023-06-15T04:15:00+02:00",
2159
- "2023-06-15T04:20:00+02:00",
2160
- "2023-06-15T04:25:00+02:00",
2161
- "2023-06-15T04:30:00+02:00",
2162
- "2023-06-15T04:35:00+02:00",
2163
- "2023-06-15T04:40:00+02:00",
2164
- "2023-06-15T04:45:00+02:00",
2165
- "2023-06-15T04:50:00+02:00",
2166
- "2023-06-15T04:55:00+02:00",
2167
- "2023-06-15T05:00:00+02:00",
2168
- "2023-06-15T05:05:00+02:00",
2169
- "2023-06-15T05:10:00+02:00",
2170
- "2023-06-15T05:15:00+02:00",
2171
- "2023-06-15T05:20:00+02:00",
2172
- "2023-06-15T05:25:00+02:00",
2173
- "2023-06-15T05:30:00+02:00",
2174
- "2023-06-15T05:35:00+02:00",
2175
- "2023-06-15T05:40:00+02:00",
2176
- "2023-06-15T05:45:00+02:00",
2177
- "2023-06-15T05:50:00+02:00",
2178
- "2023-06-15T05:55:00+02:00",
2179
- "2023-06-15T06:00:00+02:00",
2180
- "2023-06-15T06:05:00+02:00",
2181
- "2023-06-15T06:10:00+02:00",
2182
- "2023-06-15T06:15:00+02:00",
2183
- "2023-06-15T06:20:00+02:00",
2184
- "2023-06-15T06:25:00+02:00",
2185
- "2023-06-15T06:30:00+02:00",
2186
- "2023-06-15T06:35:00+02:00",
2187
- "2023-06-15T06:40:00+02:00",
2188
- "2023-06-15T06:45:00+02:00",
2189
- "2023-06-15T06:50:00+02:00",
2190
- "2023-06-15T06:55:00+02:00",
2191
- "2023-06-15T07:00:00+02:00",
2192
- "2023-06-15T07:05:00+02:00",
2193
- "2023-06-15T07:10:00+02:00",
2194
- "2023-06-15T07:15:00+02:00",
2195
- "2023-06-15T07:20:00+02:00",
2196
- "2023-06-15T07:25:00+02:00",
2197
- "2023-06-15T07:30:00+02:00",
2198
- "2023-06-15T07:35:00+02:00",
2199
- "2023-06-15T07:40:00+02:00",
2200
- "2023-06-15T07:45:00+02:00",
2201
- "2023-06-15T07:50:00+02:00",
2202
- "2023-06-15T07:55:00+02:00",
2203
- "2023-06-15T08:00:00+02:00",
2204
- "2023-06-15T08:05:00+02:00",
2205
- "2023-06-15T08:10:00+02:00",
2206
- "2023-06-15T08:15:00+02:00",
2207
- "2023-06-15T08:20:00+02:00",
2208
- "2023-06-15T08:25:00+02:00",
2209
- "2023-06-15T08:30:00+02:00",
2210
- "2023-06-15T08:35:00+02:00",
2211
- "2023-06-15T08:40:00+02:00",
2212
- "2023-06-15T08:45:00+02:00",
2213
- "2023-06-15T08:50:00+02:00",
2214
- "2023-06-15T08:55:00+02:00",
2215
- "2023-06-15T09:00:00+02:00",
2216
- "2023-06-15T09:05:00+02:00",
2217
- "2023-06-15T09:10:00+02:00",
2218
- "2023-06-15T09:15:00+02:00",
2219
- "2023-06-15T09:20:00+02:00",
2220
- "2023-06-15T09:25:00+02:00",
2221
- "2023-06-15T09:30:00+02:00",
2222
- "2023-06-15T09:35:00+02:00",
2223
- "2023-06-15T09:40:00+02:00",
2224
- "2023-06-15T09:45:00+02:00",
2225
- "2023-06-15T09:50:00+02:00",
2226
- "2023-06-15T09:55:00+02:00",
2227
- "2023-06-15T10:00:00+02:00",
2228
- "2023-06-15T10:05:00+02:00",
2229
- "2023-06-15T10:10:00+02:00",
2230
- "2023-06-15T10:15:00+02:00",
2231
- "2023-06-15T10:20:00+02:00",
2232
- "2023-06-15T10:25:00+02:00",
2233
- "2023-06-15T10:30:00+02:00",
2234
- "2023-06-15T10:35:00+02:00",
2235
- "2023-06-15T10:40:00+02:00",
2236
- "2023-06-15T10:45:00+02:00",
2237
- "2023-06-15T10:50:00+02:00",
2238
- "2023-06-15T10:55:00+02:00",
2239
- "2023-06-15T11:00:00+02:00",
2240
- "2023-06-15T11:05:00+02:00",
2241
- "2023-06-15T11:10:00+02:00",
2242
- "2023-06-15T11:15:00+02:00",
2243
- "2023-06-15T11:20:00+02:00",
2244
- "2023-06-15T11:25:00+02:00",
2245
- "2023-06-15T11:30:00+02:00",
2246
- "2023-06-15T11:35:00+02:00",
2247
- "2023-06-15T11:40:00+02:00",
2248
- "2023-06-15T11:45:00+02:00",
2249
- "2023-06-15T11:50:00+02:00",
2250
- "2023-06-15T11:55:00+02:00",
2251
- "2023-06-15T12:00:00+02:00",
2252
- "2023-06-15T12:05:00+02:00",
2253
- "2023-06-15T12:10:00+02:00",
2254
- "2023-06-15T12:15:00+02:00",
2255
- "2023-06-15T12:20:00+02:00",
2256
- "2023-06-15T12:25:00+02:00",
2257
- "2023-06-15T12:30:00+02:00",
2258
- "2023-06-15T12:35:00+02:00",
2259
- "2023-06-15T12:40:00+02:00",
2260
- "2023-06-15T12:45:00+02:00",
2261
- "2023-06-15T12:50:00+02:00",
2262
- "2023-06-15T12:55:00+02:00",
2263
- "2023-06-15T13:00:00+02:00",
2264
- "2023-06-15T13:05:00+02:00",
2265
- "2023-06-15T13:10:00+02:00",
2266
- "2023-06-15T13:15:00+02:00",
2267
- "2023-06-15T13:20:00+02:00",
2268
- "2023-06-15T13:25:00+02:00",
2269
- "2023-06-15T13:30:00+02:00",
2270
- "2023-06-15T13:35:00+02:00",
2271
- "2023-06-15T13:40:00+02:00",
2272
- "2023-06-15T13:45:00+02:00",
2273
- "2023-06-15T13:50:00+02:00",
2274
- "2023-06-15T13:55:00+02:00",
2275
- "2023-06-15T14:00:00+02:00",
2276
- "2023-06-15T14:05:00+02:00",
2277
- "2023-06-15T14:10:00+02:00",
2278
- "2023-06-15T14:15:00+02:00",
2279
- "2023-06-15T14:20:00+02:00",
2280
- "2023-06-15T14:25:00+02:00",
2281
- "2023-06-15T14:30:00+02:00",
2282
- "2023-06-15T14:35:00+02:00",
2283
- "2023-06-15T14:40:00+02:00",
2284
- "2023-06-15T14:45:00+02:00",
2285
- "2023-06-15T14:50:00+02:00",
2286
- "2023-06-15T14:55:00+02:00",
2287
- "2023-06-15T15:00:00+02:00",
2288
- "2023-06-15T15:05:00+02:00",
2289
- "2023-06-15T15:10:00+02:00",
2290
- "2023-06-15T15:15:00+02:00",
2291
- "2023-06-15T15:20:00+02:00",
2292
- "2023-06-15T15:25:00+02:00",
2293
- "2023-06-15T15:30:00+02:00",
2294
- "2023-06-15T15:35:00+02:00",
2295
- "2023-06-15T15:40:00+02:00",
2296
- "2023-06-15T15:45:00+02:00",
2297
- "2023-06-15T15:50:00+02:00",
2298
- "2023-06-15T15:55:00+02:00",
2299
- "2023-06-15T16:00:00+02:00",
2300
- "2023-06-15T16:05:00+02:00",
2301
- "2023-06-15T16:10:00+02:00",
2302
- "2023-06-15T16:15:00+02:00",
2303
- "2023-06-15T16:20:00+02:00",
2304
- "2023-06-15T16:25:00+02:00",
2305
- "2023-06-15T16:30:00+02:00",
2306
- "2023-06-15T16:35:00+02:00",
2307
- "2023-06-15T16:40:00+02:00",
2308
- "2023-06-15T16:45:00+02:00",
2309
- "2023-06-15T16:50:00+02:00",
2310
- "2023-06-15T16:55:00+02:00",
2311
- "2023-06-15T17:00:00+02:00",
2312
- "2023-06-15T17:05:00+02:00",
2313
- "2023-06-15T17:10:00+02:00",
2314
- "2023-06-15T17:15:00+02:00",
2315
- "2023-06-15T17:20:00+02:00",
2316
- "2023-06-15T17:25:00+02:00",
2317
- "2023-06-15T17:30:00+02:00",
2318
- "2023-06-15T17:35:00+02:00"
2319
- ]
2320
- }