@centreon/ui 24.4.21 → 24.4.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -14
- package/package.json +101 -31
- package/public/README.md +39 -0
- package/public/mockServiceWorker.js +303 -0
- package/src/@assets/README.md +5 -0
- package/src/@assets/brand/centreon-logo-one-line-dark.svg +1 -0
- package/src/@assets/brand/centreon-logo-one-line-light.svg +1 -0
- package/src/@assets/icons/downtime.icon.svg +1 -0
- package/src/@types/aria-attributes.d.ts +10 -0
- package/src/@types/data-attributes.d.ts +3 -0
- package/src/@types/globals.d.ts +9 -0
- package/src/@types/vite-env.d.ts +2 -0
- package/src/ActionsList/ActionsList.styles.ts +116 -0
- package/src/ActionsList/index.stories.tsx +74 -0
- package/src/ActionsList/index.tsx +58 -21
- package/src/ActionsList/models.ts +8 -0
- package/src/Button/Icon/index.tsx +11 -2
- package/src/Button/Save/index.stories.tsx +10 -5
- package/src/Button/Save/index.tsx +1 -1
- package/src/Checkbox/Checkbox.tsx +109 -0
- package/src/Checkbox/CheckboxGroup/index.stories.tsx +41 -0
- package/src/Checkbox/CheckboxGroup/index.tsx +75 -0
- package/src/Checkbox/index.stories.tsx +39 -0
- package/src/Checkbox/index.tsx +2 -0
- package/src/Dashboard/Dashboard.styles.ts +108 -0
- package/src/Dashboard/DashboardLayout.stories.tsx +104 -0
- package/src/Dashboard/Grid.tsx +70 -0
- package/src/Dashboard/Item.tsx +100 -0
- package/src/Dashboard/Layout.tsx +79 -0
- package/src/Dashboard/index.tsx +9 -0
- package/src/Dashboard/utils.ts +28 -0
- package/src/Dialog/Confirm/index.tsx +17 -4
- package/src/Dialog/Duplicate/index.test.tsx +1 -1
- package/src/Dialog/index.tsx +14 -2
- package/src/FallbackPage/FallbackPage.tsx +2 -2
- package/src/FileDropZone/index.tsx +1 -1
- package/src/Form/CollapsibleGroup.tsx +15 -5
- package/src/Form/{index.stories.tsx → Form.stories.tsx} +2 -3
- package/src/Form/Form.styles.ts +11 -0
- package/src/Form/{index.tsx → Form.tsx} +38 -16
- package/src/Form/FormButtons.tsx +2 -4
- package/src/Form/Inputs/Autocomplete.tsx +1 -1
- package/src/Form/Inputs/Checkbox.tsx +57 -0
- package/src/Form/Inputs/CheckboxGroup.tsx +76 -0
- package/src/Form/Inputs/ConnectedAutocomplete.tsx +3 -1
- package/src/Form/Inputs/Grid.tsx +4 -2
- package/src/Form/Inputs/Radio.tsx +16 -5
- package/src/Form/Inputs/Switch.tsx +1 -1
- package/src/Form/Inputs/Text.tsx +18 -7
- package/src/Form/Inputs/index.tsx +31 -15
- package/src/Form/Inputs/models.ts +20 -4
- package/src/Form/index.ts +1 -0
- package/src/Form/storiesData.tsx +50 -3
- package/src/Graph/Gauge/AnimatedPie.tsx +102 -0
- package/src/Graph/Gauge/Gauge.stories.tsx +159 -0
- package/src/Graph/Gauge/Gauge.tsx +41 -0
- package/src/Graph/Gauge/PieData.tsx +63 -0
- package/src/Graph/Gauge/ResponsiveGauge.tsx +148 -0
- package/src/Graph/Gauge/Thresholds.tsx +117 -0
- package/src/Graph/Gauge/index.ts +1 -0
- package/src/Graph/Gauge/models.ts +20 -0
- package/src/Graph/HeatMap/HeatMap.stories.tsx +105 -0
- package/src/Graph/HeatMap/HeatMap.styles.tsx +29 -0
- package/src/Graph/HeatMap/HeatMap.tsx +12 -0
- package/src/Graph/HeatMap/HeatMapData.json +137 -0
- package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +98 -0
- package/src/Graph/HeatMap/index.ts +1 -0
- package/src/Graph/HeatMap/model.ts +33 -0
- package/src/Graph/LineChart/BasicComponents/Axes/UnitLabel.tsx +20 -0
- package/src/Graph/LineChart/BasicComponents/Axes/index.tsx +88 -0
- package/src/Graph/LineChart/BasicComponents/Axes/models.ts +26 -0
- package/src/Graph/LineChart/BasicComponents/Axes/useAxisY.ts +100 -0
- package/src/Graph/LineChart/BasicComponents/Grids/index.tsx +20 -0
- package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/index.tsx +99 -0
- package/src/Graph/LineChart/BasicComponents/Lines/RegularLines/useRegularLines.ts +15 -0
- package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/index.tsx +81 -0
- package/src/Graph/LineChart/BasicComponents/Lines/StackedLines/useStackedLines.ts +39 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/BasicThreshold.tsx +53 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/Circle.tsx +43 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithPatternLines.tsx +78 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/ThresholdWithVariation.tsx +63 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/helpers/index.ts +69 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/index.tsx +142 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/models.ts +105 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useCoordinateCircle.ts +46 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/useScaleThreshold.ts +171 -0
- package/src/Graph/LineChart/BasicComponents/Lines/index.tsx +189 -0
- package/src/Graph/LineChart/BasicComponents/Lines/models.ts +45 -0
- package/src/Graph/LineChart/BasicComponents/LoadingProgress.tsx +46 -0
- package/src/Graph/LineChart/BasicComponents/ThresholdLine.tsx +64 -0
- package/src/Graph/LineChart/BasicComponents/Thresholds.tsx +77 -0
- package/src/Graph/LineChart/BasicComponents/useFilterLines.ts +60 -0
- package/src/Graph/LineChart/Header/index.tsx +65 -0
- package/src/Graph/LineChart/Icons/Downtime.tsx +9 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/GuidingLines.tsx +45 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/RegularAnchorPoint.tsx +66 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/StackedAnchorPoint.tsx +76 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/TooltipAnchorPoint.tsx +96 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/index.tsx +20 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/models.ts +62 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTickGraph.ts +94 -0
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTooltipAnchorPoint.ts +107 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Area.tsx +114 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/Line.tsx +103 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/index.tsx +81 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Area/Downtime.tsx +27 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/EventAnnotations.tsx +61 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Acknowledgement.tsx +27 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Line/Comments.tsx +25 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/annotationsAtoms.ts +183 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/index.tsx +49 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/models.ts +25 -0
- package/src/Graph/LineChart/InteractiveComponents/Annotations/useAnnotation.ts +56 -0
- package/src/Graph/LineChart/InteractiveComponents/Bar.tsx +21 -0
- package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftIcon.tsx +62 -0
- package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/TimeShiftZone.tsx +74 -0
- package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/index.tsx +85 -0
- package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/models.ts +12 -0
- package/src/Graph/LineChart/InteractiveComponents/TimeShiftZones/useTimeShiftZones.ts +72 -0
- package/src/Graph/LineChart/InteractiveComponents/Tooltip/index.tsx +59 -0
- package/src/Graph/LineChart/InteractiveComponents/Tooltip/models.ts +9 -0
- package/src/Graph/LineChart/InteractiveComponents/Tooltip/useGraphTooltip.ts +67 -0
- package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/index.tsx +38 -0
- package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/models.ts +9 -0
- package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/useZoomPreview.ts +107 -0
- package/src/Graph/LineChart/InteractiveComponents/ZoomPreview/zoomPreviewAtoms.ts +3 -0
- package/src/Graph/LineChart/InteractiveComponents/index.tsx +168 -0
- package/src/Graph/LineChart/InteractiveComponents/interactionWithGraphAtoms.ts +52 -0
- package/src/Graph/LineChart/Legend/InteractiveValue.tsx +22 -0
- package/src/Graph/LineChart/Legend/Legend.styles.ts +117 -0
- package/src/Graph/LineChart/Legend/LegendContent.tsx +33 -0
- package/src/Graph/LineChart/Legend/LegendHeader.tsx +93 -0
- package/src/Graph/LineChart/Legend/index.tsx +201 -0
- package/src/Graph/LineChart/Legend/models.ts +16 -0
- package/src/Graph/LineChart/Legend/useInteractiveValues.ts +99 -0
- package/src/Graph/LineChart/Legend/useLegend.ts +104 -0
- package/src/Graph/LineChart/LineChart.styles.ts +45 -0
- package/src/Graph/LineChart/LineChart.tsx +317 -0
- package/src/Graph/LineChart/LoadingSkeleton.tsx +44 -0
- package/src/Graph/LineChart/common/index.ts +35 -0
- package/src/Graph/LineChart/graphAtoms.ts +3 -0
- package/src/Graph/LineChart/helpers/doc.ts +560 -0
- package/src/Graph/LineChart/helpers/index.ts +63 -0
- package/src/Graph/LineChart/index.stories.tsx +478 -0
- package/src/Graph/LineChart/index.tsx +115 -0
- package/src/Graph/LineChart/mockedData/annotationData.json +326 -0
- package/src/Graph/LineChart/mockedData/exclusionPeriodFirstPeriod.json +588 -0
- package/src/Graph/LineChart/mockedData/exclusionPeriodSecondPeriod.json +588 -0
- package/src/Graph/LineChart/mockedData/exclusionPeriodThirdPeriod.json +581 -0
- package/src/Graph/LineChart/mockedData/lastDay.json +1326 -0
- package/src/Graph/LineChart/mockedData/lastDayAreaStack.json +3106 -0
- package/src/Graph/LineChart/mockedData/lastDayForward.json +1338 -0
- package/src/Graph/LineChart/mockedData/lastDayThreshold.json +2352 -0
- package/src/Graph/LineChart/mockedData/lastMonth.json +1674 -0
- package/src/Graph/LineChart/mockedData/lastWeek.json +2202 -0
- package/src/Graph/LineChart/mockedData/zoomPreview.json +742 -0
- package/src/Graph/LineChart/models.ts +146 -0
- package/src/Graph/LineChart/translatedLabels.ts +9 -0
- package/src/Graph/LineChart/useLineChartData.ts +49 -0
- package/src/Graph/LineChart/useLineChartIntersection.ts +36 -0
- package/src/Graph/SingleBar/ResponsiveSingleBar.tsx +197 -0
- package/src/Graph/SingleBar/SingleBar.stories.tsx +204 -0
- package/src/Graph/SingleBar/SingleBar.tsx +25 -0
- package/src/Graph/SingleBar/ThresholdLine.tsx +103 -0
- package/src/Graph/SingleBar/Thresholds.tsx +50 -0
- package/src/Graph/SingleBar/index.ts +1 -0
- package/src/Graph/SingleBar/models.ts +10 -0
- package/src/Graph/Text/Text.stories.tsx +67 -0
- package/src/Graph/Text/Text.styles.ts +17 -0
- package/src/Graph/Text/Text.tsx +91 -0
- package/src/Graph/Text/index.ts +1 -0
- package/src/Graph/common/margins.ts +1 -0
- package/src/Graph/common/models.ts +19 -0
- package/src/Graph/common/timeSeries/index.test.ts +624 -0
- package/src/Graph/common/timeSeries/index.ts +626 -0
- package/src/Graph/common/timeSeries/models.ts +129 -0
- package/src/Graph/common/utils.ts +75 -0
- package/src/Graph/index.ts +5 -0
- package/src/Home.stories.mdx +1 -84
- package/src/Image/Image.tsx +11 -1
- package/src/Image/index.stories.tsx +2 -2
- package/src/Image/index.test.tsx +3 -3
- package/src/InputField/Search/PersistentTooltip.tsx +10 -6
- package/src/InputField/Select/Autocomplete/Connected/Multi/MultiConnectedAutocompleteField.cypress.spec.tsx +127 -0
- package/src/InputField/Select/Autocomplete/Connected/Multi/index.test.tsx +4 -22
- package/src/InputField/Select/Autocomplete/Connected/Multi/utils/index.ts +22 -0
- package/src/InputField/Select/Autocomplete/Connected/index.stories.tsx +0 -3
- package/src/InputField/Select/Autocomplete/Connected/index.test.tsx +4 -7
- package/src/InputField/Select/Autocomplete/Connected/index.tsx +47 -9
- package/src/InputField/Select/Autocomplete/Draggable/index.stories.tsx +0 -2
- package/src/InputField/Select/Autocomplete/Multi/index.tsx +32 -15
- package/src/InputField/Select/Autocomplete/index.stories.tsx +1 -10
- package/src/InputField/Select/Autocomplete/index.tsx +5 -2
- package/src/InputField/Select/index.tsx +2 -1
- package/src/InputField/Text/index.tsx +19 -9
- package/src/Listing/ActionBar/index.tsx +15 -8
- package/src/Listing/Cell/DataCell.styles.ts +24 -0
- package/src/Listing/Cell/DataCell.tsx +43 -68
- package/src/Listing/Cell/index.tsx +88 -8
- package/src/Listing/EmptyResult/EmptyResult.tsx +13 -0
- package/src/Listing/Header/Cell/ListingHeaderCell.styles.ts +71 -0
- package/src/Listing/Header/{SortableCell/Content.tsx → Cell/ListingHeaderCell.tsx} +18 -83
- package/src/Listing/Header/Cell/SelectActionListingHeaderCell.styles.ts +26 -0
- package/src/Listing/Header/Cell/SelectActionListingHeaderCell.tsx +70 -0
- package/src/Listing/Header/ListingHeader.styles.ts +16 -0
- package/src/Listing/Header/{index.tsx → ListingHeader.tsx} +28 -105
- package/src/Listing/Header/_internals/DraggableIconButton.tsx +35 -0
- package/src/Listing/Header/{PredefinedSelectionList.tsx → _internals/PredefinedSelectionList.tsx} +1 -1
- package/src/Listing/Header/index.ts +1 -0
- package/src/Listing/Listing.cypress.spec.tsx +122 -0
- package/src/Listing/Listing.styles.ts +81 -0
- package/src/Listing/ListingDocs.mdx +61 -0
- package/src/Listing/Row/EmptyRow.styles.ts +14 -0
- package/src/Listing/Row/EmptyRow.tsx +30 -0
- package/src/Listing/{Row.tsx → Row/Row.tsx} +12 -11
- package/src/Listing/Row/SkeletonLoaderRows.tsx +23 -0
- package/src/Listing/index.stories.tsx +144 -40
- package/src/Listing/index.test.tsx +1 -1
- package/src/Listing/index.tsx +217 -262
- package/src/Listing/models.ts +1 -0
- package/src/Listing/tableAtoms.ts +15 -10
- package/src/Listing/useStyleTable.ts +9 -9
- package/src/ListingPage/index.stories.tsx +21 -8
- package/src/ListingPage/index.tsx +20 -38
- package/src/Logo/CentreonLogo.tsx +2 -2
- package/src/Module/LicensedModule/LicenseCheck/index.stories.tsx +0 -2
- package/src/Module/LicensedModule/LicenseCheck/index.tsx +24 -9
- package/src/Module/LicensedModule/index.tsx +7 -1
- package/src/Panel/Memoized.tsx +1 -1
- package/src/Panel/Section/index.test.tsx +1 -1
- package/src/Panel/Section/index.tsx +1 -1
- package/src/Panel/index.tsx +10 -6
- package/src/ParentSize/ParentSize.tsx +24 -0
- package/src/ParentSize/index.ts +1 -0
- package/src/PopoverMenu/index.tsx +18 -4
- package/src/RichTextEditor/ContentEditable.tsx +70 -24
- package/src/RichTextEditor/RichTextEditor.cypress.spec.tsx +408 -0
- package/src/RichTextEditor/RichTextEditor.tsx +161 -47
- package/src/RichTextEditor/index.stories.tsx +14 -0
- package/src/RichTextEditor/plugins/AutoLinkPlugin/index.tsx +53 -5
- package/src/RichTextEditor/plugins/FloatingLinkEditorPlugin.tsx +54 -16
- package/src/RichTextEditor/plugins/ToolbarPlugin/AlignPicker.tsx +116 -0
- package/src/RichTextEditor/plugins/ToolbarPlugin/BlockButtons.tsx +155 -0
- package/src/RichTextEditor/plugins/ToolbarPlugin/FormatButtons.tsx +31 -92
- package/src/RichTextEditor/plugins/ToolbarPlugin/LinkButton.tsx +106 -0
- package/src/RichTextEditor/plugins/ToolbarPlugin/ListButton.tsx +155 -0
- package/src/RichTextEditor/plugins/ToolbarPlugin/MacrosButton.tsx +75 -0
- package/src/RichTextEditor/plugins/ToolbarPlugin/ToolbarPlugin.styles.ts +32 -0
- package/src/RichTextEditor/plugins/ToolbarPlugin/UndoRedoButtons.tsx +13 -3
- package/src/RichTextEditor/plugins/ToolbarPlugin/index.tsx +35 -10
- package/src/RichTextEditor/translatedLabels.ts +3 -0
- package/src/Snackbar/index.tsx +14 -4
- package/src/Snackbar/useSnackbar.tsx +5 -1
- package/src/SortableItems/SortableItem.tsx +3 -2
- package/src/ThemeProvider/index.tsx +41 -33
- package/src/ThemeProvider/palettes.ts +422 -201
- package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.styles.ts +51 -0
- package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.tsx +95 -0
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/ErrorText.tsx +14 -0
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/PickersStartEndDate.tsx +166 -0
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/index.tsx +76 -0
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/models.ts +61 -0
- package/src/TimePeriods/CustomTimePeriod/PopoverCustomTimePeriod/usePickersStartEndDate.ts +82 -0
- package/src/TimePeriods/CustomTimePeriod/SimpleCustomTimePeriod.tsx +28 -0
- package/src/TimePeriods/CustomTimePeriod/index.tsx +66 -0
- package/src/TimePeriods/DateTimePickerInput.tsx +49 -0
- package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +65 -0
- package/src/TimePeriods/SelectedTimePeriod.tsx +102 -0
- package/src/TimePeriods/TimePeriods.cypress.spec.tsx +510 -0
- package/src/TimePeriods/TimePeriods.styles.ts +22 -0
- package/src/TimePeriods/helpers/index.ts +26 -0
- package/src/TimePeriods/index.stories.tsx +113 -0
- package/src/TimePeriods/index.tsx +79 -0
- package/src/TimePeriods/mockedData.ts +12 -0
- package/src/TimePeriods/models.ts +97 -0
- package/src/TimePeriods/timePeriodsAtoms.ts +102 -0
- package/src/TimePeriods/translatedLabels.ts +9 -0
- package/src/TimePeriods/useSortTimePeriods.ts +31 -0
- package/src/TimePeriods/useTimePeriod.ts +49 -0
- package/src/Typography/EllipsisTypography.tsx +18 -0
- package/src/Typography/FluidTypography/index.stories.tsx +63 -0
- package/src/Typography/FluidTypography/index.tsx +51 -0
- package/src/Typography/FluidTypography/useFluidResizeObserver.ts +56 -0
- package/src/Typography/Subtitle.tsx +55 -0
- package/src/Typography/{index.stories.tsx → Typography.stories.tsx} +5 -5
- package/src/WallpaperPage/index.stories.tsx +1 -1
- package/src/Wizard/ActionsBar.test.tsx +1 -1
- package/src/Wizard/WizardContent.tsx +2 -3
- package/src/Wizard/index.stories.tsx +5 -18
- package/src/Wizard/index.test.tsx +1 -1
- package/src/Wizard/index.tsx +20 -5
- package/src/Wizard/models.ts +7 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-normal-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-item-header-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-dashboard-with-many-panels-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-basic-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-20-px-height-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-200-px-width-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-heading-5-variant-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-fluid-typography-with-long-text-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-as-empty-state-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-loading-with-no-data-1-snap.png +0 -0
- package/src/__image_snapshots__/storyshots-test-js-image-story-shots-listing-with-editable-and-sortable-columns-1-snap.png +0 -0
- package/src/api/TestQueryProvider.tsx +2 -1
- package/src/api/buildListingEndpoint/getSearchQueryParameterValue.ts +35 -26
- package/src/api/buildListingEndpoint/index.test.ts +2 -2
- package/src/api/buildListingEndpoint/index.ts +1 -1
- package/src/api/buildListingEndpoint/models.ts +2 -2
- package/src/api/customFetch.ts +22 -3
- package/src/api/useFetchQuery/index.ts +34 -19
- package/src/api/useGraphQuery/index.ts +166 -0
- package/src/api/useGraphQuery/models.ts +15 -0
- package/src/api/useMutationQuery/index.ts +51 -20
- package/src/api/useRequest/index.ts +9 -6
- package/src/base/tokens/README.md +3 -0
- package/src/base/tokens/source/$metadata.json +5 -0
- package/src/base/tokens/source/base.json +142 -0
- package/src/base/tokens/themes/base.tokens.d.ts +38 -0
- package/src/base/tokens/themes/base.tokens.json +695 -0
- package/src/base/tokens/themes/base.tokens.ts +38 -0
- package/src/base/tokens/themes/ui-dark.tokens.d.ts +38 -0
- package/src/base/tokens/themes/ui-dark.tokens.json +695 -0
- package/src/base/tokens/themes/ui-dark.tokens.ts +38 -0
- package/src/base/tokens/themes/ui-light.tokens.d.ts +38 -0
- package/src/base/tokens/themes/ui-light.tokens.json +695 -0
- package/src/base/tokens/themes/ui-light.tokens.ts +38 -0
- package/src/components/Avatar/Avatar.stories.tsx +23 -0
- package/src/components/Avatar/Avatar.styles.ts +11 -0
- package/src/components/Avatar/Avatar.tsx +32 -0
- package/src/components/Avatar/index.ts +1 -0
- package/src/components/Button/Button.stories.tsx +34 -0
- package/src/components/Button/Button.styles.ts +44 -0
- package/src/components/Button/Button.tsx +78 -0
- package/src/components/Button/Icon/IconButton.stories.tsx +18 -0
- package/src/components/Button/Icon/IconButton.styles.ts +14 -0
- package/src/components/Button/Icon/IconButton.tsx +58 -0
- package/src/components/Button/Icon/index.tsx +1 -0
- package/src/components/Button/index.ts +2 -0
- package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +25 -0
- package/src/components/CollapsibleItem/CollapsibleItem.tsx +47 -0
- package/src/components/CollapsibleItem/index.ts +1 -0
- package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +15 -0
- package/src/components/DataTable/DataTable.stories.tsx +51 -0
- package/src/components/DataTable/DataTable.styles.ts +27 -0
- package/src/components/DataTable/DataTable.tsx +35 -0
- package/src/components/DataTable/EmptyState/DataTableEmptyState.stories.tsx +21 -0
- package/src/components/DataTable/EmptyState/DataTableEmptyState.styles.ts +26 -0
- package/src/components/DataTable/EmptyState/DataTableEmptyState.tsx +53 -0
- package/src/components/DataTable/Item/DataTableItem.stories.tsx +25 -0
- package/src/components/DataTable/Item/DataTableItem.styles.ts +33 -0
- package/src/components/DataTable/Item/DataTableItem.tsx +123 -0
- package/src/components/DataTable/Item/DataTableItemSkeleton.tsx +13 -0
- package/src/components/DataTable/index.ts +10 -0
- package/src/components/Form/AccessRights/AccessRights.resource.ts +45 -0
- package/src/components/Form/AccessRights/AccessRightsForm.stories.tsx +59 -0
- package/src/components/Form/AccessRights/AccessRightsForm.styles.ts +21 -0
- package/src/components/Form/AccessRights/AccessRightsForm.tsx +67 -0
- package/src/components/Form/AccessRights/AccessRightsFormActions.tsx +80 -0
- package/src/components/Form/AccessRights/Input/AddAction.tsx +31 -0
- package/src/components/Form/AccessRights/Input/ContactAccessRightInput.stories.tsx +54 -0
- package/src/components/Form/AccessRights/Input/ContactAccessRightInput.tsx +72 -0
- package/src/components/Form/AccessRights/Input/ContactAccessRightsInput.styles.ts +22 -0
- package/src/components/Form/AccessRights/Input/ContactInputField.tsx +105 -0
- package/src/components/Form/AccessRights/Input/RoleInputField.tsx +29 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsList.stories.tsx +97 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsList.styles.ts +71 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsList.tsx +51 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.stories.tsx +116 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.tsx +118 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsListItemSkeleton.tsx +26 -0
- package/src/components/Form/AccessRights/List/ContactAccessRightsListSkeleton.tsx +28 -0
- package/src/components/Form/AccessRights/Stats/AccessRightsStats.styles.ts +18 -0
- package/src/components/Form/AccessRights/Stats/AccessRightsStats.tsx +41 -0
- package/src/components/Form/AccessRights/__fixtures__/contactAccessRight.mock.ts +52 -0
- package/src/components/Form/AccessRights/common/GroupLabel.styles.ts +18 -0
- package/src/components/Form/AccessRights/common/GroupLabel.tsx +15 -0
- package/src/components/Form/AccessRights/common/Input.styles.ts +48 -0
- package/src/components/Form/AccessRights/common/RoleInputSelect.styles.ts +11 -0
- package/src/components/Form/AccessRights/common/RoleInputSelect.tsx +57 -0
- package/src/components/Form/AccessRights/index.ts +3 -0
- package/src/components/Form/AccessRights/useAccessRightsForm.test.tsx +531 -0
- package/src/components/Form/AccessRights/useAccessRightsForm.tsx +282 -0
- package/src/components/Form/AccessRights/useAccessRightsForm.utils.ts +41 -0
- package/src/components/Form/AccessRightsV2/AccessRights.cypress.spec.tsx +350 -0
- package/src/components/Form/AccessRightsV2/AccessRights.stories.tsx +119 -0
- package/src/components/Form/AccessRightsV2/AccessRights.styles.ts +10 -0
- package/src/components/Form/AccessRightsV2/AccessRights.tsx +60 -0
- package/src/components/Form/AccessRightsV2/Actions/Actions.styles.ts +14 -0
- package/src/components/Form/AccessRightsV2/Actions/Actions.tsx +81 -0
- package/src/components/Form/AccessRightsV2/Actions/useActions.ts +79 -0
- package/src/components/Form/AccessRightsV2/List/Item.tsx +90 -0
- package/src/components/Form/AccessRightsV2/List/List.styles.tsx +45 -0
- package/src/components/Form/AccessRightsV2/List/List.tsx +52 -0
- package/src/components/Form/AccessRightsV2/List/ListItemSkeleton.tsx +18 -0
- package/src/components/Form/AccessRightsV2/List/ListSkeleton.tsx +22 -0
- package/src/components/Form/AccessRightsV2/List/RemoveAccessRight.tsx +38 -0
- package/src/components/Form/AccessRightsV2/List/StateChip.tsx +28 -0
- package/src/components/Form/AccessRightsV2/List/useItem.ts +64 -0
- package/src/components/Form/AccessRightsV2/Provider.tsx +15 -0
- package/src/components/Form/AccessRightsV2/ShareInput/ContactSwitch.tsx +42 -0
- package/src/components/Form/AccessRightsV2/ShareInput/ShareInput.styles.ts +9 -0
- package/src/components/Form/AccessRightsV2/ShareInput/ShareInput.tsx +77 -0
- package/src/components/Form/AccessRightsV2/ShareInput/useShareInput.tsx +109 -0
- package/src/components/Form/AccessRightsV2/Stats/Stats.tsx +36 -0
- package/src/components/Form/AccessRightsV2/atoms.ts +97 -0
- package/src/components/Form/AccessRightsV2/common/RoleSelectField.styles.tsx +7 -0
- package/src/components/Form/AccessRightsV2/common/RoleSelectField.tsx +45 -0
- package/src/components/Form/AccessRightsV2/models.ts +54 -0
- package/src/components/Form/AccessRightsV2/storiesData.ts +221 -0
- package/src/components/Form/AccessRightsV2/useAccessRightsInitValues.ts +51 -0
- package/src/components/Form/Dashboard/Dashboard.resource.ts +9 -0
- package/src/components/Form/Dashboard/DashboardForm.stories.ts +39 -0
- package/src/components/Form/Dashboard/DashboardForm.styles.ts +21 -0
- package/src/components/Form/Dashboard/DashboardForm.tsx +134 -0
- package/src/components/Form/Dashboard/GlobalRefreshFieldOption.tsx +59 -0
- package/src/components/Form/Dashboard/index.ts +2 -0
- package/src/components/Form/Dashboard/translatedLabels.ts +9 -0
- package/src/components/Form/Form.models.ts +1 -0
- package/src/components/Form/Form.resource.ts +1 -0
- package/src/components/Form/Form.styles.ts +17 -0
- package/src/components/Form/FormActions.tsx +57 -0
- package/src/components/Form/index.ts +4 -0
- package/src/components/Header/PageHeader/PageHeader.stories.tsx +97 -0
- package/src/components/Header/PageHeader/PageHeader.styles.ts +126 -0
- package/src/components/Header/PageHeader/PageHeader.tsx +15 -0
- package/src/components/Header/PageHeader/PageHeaderActions.tsx +17 -0
- package/src/components/Header/PageHeader/PageHeaderMain.tsx +15 -0
- package/src/components/Header/PageHeader/PageHeaderMenu.tsx +15 -0
- package/src/components/Header/PageHeader/PageHeaderMessage.tsx +32 -0
- package/src/components/Header/PageHeader/PageHeaderTitle.tsx +47 -0
- package/src/components/Header/PageHeader/index.ts +14 -0
- package/src/components/Header/index.ts +1 -0
- package/src/components/Icon/Icon.styles.ts +0 -0
- package/src/components/Icon/Icon.tsx +2 -0
- package/src/components/Icon/index.ts +0 -0
- package/src/components/Inputs/Switch/Switch.stories.tsx +22 -0
- package/src/components/Inputs/Switch/Switch.styles.ts +13 -0
- package/src/components/Inputs/Switch/Switch.tsx +18 -0
- package/src/components/Inputs/index.ts +1 -0
- package/src/components/ItemComposition/Item.tsx +41 -0
- package/src/components/ItemComposition/ItemComposition.stories.tsx +78 -0
- package/src/components/ItemComposition/ItemComposition.styles.ts +29 -0
- package/src/components/ItemComposition/ItemComposition.tsx +47 -0
- package/src/components/ItemComposition/index.ts +6 -0
- package/src/components/Layout/AreaIndicator.styles.ts +33 -0
- package/src/components/Layout/AreaIndicator.tsx +35 -0
- package/src/components/Layout/PageLayout/PageLayout.stories.tsx +81 -0
- package/src/components/Layout/PageLayout/PageLayout.styles.ts +41 -0
- package/src/components/Layout/PageLayout/PageLayout.tsx +21 -0
- package/src/components/Layout/PageLayout/PageLayoutActions.tsx +24 -0
- package/src/components/Layout/PageLayout/PageLayoutBody.tsx +24 -0
- package/src/components/Layout/PageLayout/PageLayoutHeader.tsx +15 -0
- package/src/components/Layout/PageLayout/index.ts +10 -0
- package/src/components/Layout/index.ts +1 -0
- package/src/components/List/Item/Avatar.tsx +21 -0
- package/src/components/List/Item/AvatarSkeleton.tsx +17 -0
- package/src/components/List/Item/ListItem.stories.tsx +41 -0
- package/src/components/List/Item/ListItem.styles.ts +63 -0
- package/src/components/List/Item/ListItem.tsx +34 -0
- package/src/components/List/Item/Text.tsx +27 -0
- package/src/components/List/Item/TextSkeleton.tsx +22 -0
- package/src/components/List/Item/index.ts +14 -0
- package/src/components/List/List.stories.tsx +70 -0
- package/src/components/List/List.styles.ts +8 -0
- package/src/components/List/List.tsx +19 -0
- package/src/components/List/index.ts +6 -0
- package/src/components/Menu/Button/MenuButton.stories.tsx +16 -0
- package/src/components/Menu/Button/MenuButton.styles.ts +27 -0
- package/src/components/Menu/Button/MenuButton.tsx +67 -0
- package/src/components/Menu/Button/index.ts +1 -0
- package/src/components/Menu/Menu.stories.tsx +71 -0
- package/src/components/Menu/Menu.styles.ts +68 -0
- package/src/components/Menu/Menu.tsx +25 -0
- package/src/components/Menu/MenuDivider.tsx +13 -0
- package/src/components/Menu/MenuItem.tsx +38 -0
- package/src/components/Menu/MenuItems.tsx +36 -0
- package/src/components/Menu/index.ts +12 -0
- package/src/components/Menu/useMenu.tsx +79 -0
- package/src/components/Modal/Modal.stories.tsx +142 -0
- package/src/components/Modal/Modal.styles.ts +90 -0
- package/src/components/Modal/Modal.tsx +79 -0
- package/src/components/Modal/ModalActions.tsx +62 -0
- package/src/components/Modal/ModalBody.tsx +15 -0
- package/src/components/Modal/ModalHeader.tsx +21 -0
- package/src/components/Modal/index.ts +12 -0
- package/src/components/README.md +3 -0
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +62 -0
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.styles.tsx +22 -0
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +68 -0
- package/src/components/Tooltip/ConfirmationTooltip/TooltipContent.tsx +31 -0
- package/src/components/Tooltip/ConfirmationTooltip/index.ts +1 -0
- package/src/components/Tooltip/ConfirmationTooltip/models.ts +18 -0
- package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.stories.tsx +70 -0
- package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.styles.ts +5 -0
- package/src/components/Tooltip/TextOverflowTooltip/TextOverflowTooltip.tsx +115 -0
- package/src/components/Tooltip/TextOverflowTooltip/index.tsx +1 -0
- package/src/components/Tooltip/Tooltip.stories.tsx +41 -0
- package/src/components/Tooltip/Tooltip.tsx +57 -0
- package/src/components/Tooltip/index.ts +2 -0
- package/src/components/index.ts +13 -0
- package/src/index.ts +31 -21
- package/src/screens/dashboard/DashboardsDetail.stories.tsx +108 -0
- package/src/screens/dashboard/DashboardsOverview.stories.tsx +281 -0
- package/src/styles/tokens/themes/_ui-dark.tokens.json +695 -0
- package/src/styles/tokens/themes/_ui-light.tokens.json +695 -0
- package/src/utils/centreonBaseURL.ts +4 -0
- package/src/utils/docsURL.ts +31 -0
- package/src/utils/getNormalizedId.ts +1 -3
- package/src/utils/index.ts +22 -0
- package/src/utils/panelSize.ts +15 -0
- package/src/utils/sanitizedHTML.ts +18 -0
- package/src/utils/translatedLabel.ts +2 -0
- package/src/utils/useCopyToClipboard.ts +2 -3
- package/src/utils/useDateTimePickerAdapter.ts +309 -0
- package/src/utils/useDebounce.ts +8 -5
- package/src/utils/useDeepCallback.ts +1 -3
- package/src/utils/useDeepMemo.ts +1 -3
- package/src/utils/useInfiniteScrollListing.ts +121 -0
- package/src/utils/useIntersectionObserver.ts +5 -5
- package/src/utils/useKeyObserver.tsx +1 -3
- package/src/utils/useLicenseExpirationWarning.cypress.spec.tsx +137 -0
- package/src/utils/useLicenseExpirationWarning.ts +52 -0
- package/src/utils/useLocaleDateTimeFormat/index.test.tsx +1 -1
- package/src/utils/useLocaleDateTimeFormat/index.ts +4 -2
- package/src/utils/useLocaleDateTimeFormat/localeFallback.test.tsx +1 -1
- package/src/utils/useMemoComponent.ts +1 -1
- package/src/utils/useRefreshInterval.ts +39 -0
- package/src/utils/useResizeObserver.ts +6 -0
- package/src/utils/useThresholds.ts +0 -0
- package/{setupTests.js → test/setupTests.js} +1 -1
- package/{src → test}/testRenderer.tsx +1 -1
- package/.storybook/main.js +0 -82
- package/.storybook/preview.tsx +0 -21
- package/jest.config.js +0 -20
- package/src/Listing/Header/SortableCell/DraggableIcon.tsx +0 -41
- package/src/Listing/Skeleton.tsx +0 -11
- package/src/storyshots.test.js +0 -52
- package/testRunner.js +0 -36
- package/tsconfig.json +0 -29
- package/types/declarations.d.ts +0 -9
- /package/{assets → public/brand}/centreon-logo-one-line-dark.svg +0 -0
- /package/{assets → public/brand}/centreon-logo-one-line-light.svg +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-bold-webfont.ttf +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-bold-webfont.woff +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-bold-webfont.woff2 +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-light-webfont.ttf +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-light-webfont.woff +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-light-webfont.woff2 +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-medium-webfont.ttf +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-medium-webfont.woff +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-medium-webfont.woff2 +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-regular-webfont.ttf +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-regular-webfont.woff +0 -0
- /package/{fonts/fonts-generated → public/fonts}/roboto-regular-webfont.woff2 +0 -0
- /package/{assets → src/@assets/images}/not-authorized-template-background-dark.svg +0 -0
- /package/{assets → src/@assets/images}/not-authorized-template-background-light.svg +0 -0
- /package/src/Listing/Header/{Label.tsx → _internals/Label.tsx} +0 -0
- /package/src/Typography/{index.tsx → story.utils.tsx} +0 -0
|
@@ -0,0 +1,1338 @@
|
|
|
1
|
+
{
|
|
2
|
+
"global": {
|
|
3
|
+
"title": "oracle-shared-spool-ratio graph on srv-oracle-users",
|
|
4
|
+
"start": "2023-06-07T09:27:07+02:00",
|
|
5
|
+
"end": "2023-06-08T09:27:07+02:00",
|
|
6
|
+
"vertical-label": "Value",
|
|
7
|
+
"base": 1000,
|
|
8
|
+
"width": 550,
|
|
9
|
+
"height": 140,
|
|
10
|
+
"scaled": 0,
|
|
11
|
+
"multiple_services": false
|
|
12
|
+
},
|
|
13
|
+
"metrics": [
|
|
14
|
+
{
|
|
15
|
+
"index_id": 4811,
|
|
16
|
+
"metric_id": 11758,
|
|
17
|
+
"metric": "connTime",
|
|
18
|
+
"metric_legend": "connTime",
|
|
19
|
+
"unit": "s",
|
|
20
|
+
"hidden": 0,
|
|
21
|
+
"min": null,
|
|
22
|
+
"max": null,
|
|
23
|
+
"virtual": 0,
|
|
24
|
+
"ds_data": {
|
|
25
|
+
"ds_min": "1",
|
|
26
|
+
"ds_max": "1",
|
|
27
|
+
"ds_minmax_int": "0",
|
|
28
|
+
"ds_last": "1",
|
|
29
|
+
"ds_average": "1",
|
|
30
|
+
"ds_total": "0",
|
|
31
|
+
"ds_tickness": 1,
|
|
32
|
+
"ds_color_line_mode": "1",
|
|
33
|
+
"ds_color_line": "#ff99cc"
|
|
34
|
+
},
|
|
35
|
+
"legend": "connTime",
|
|
36
|
+
"stack": 0,
|
|
37
|
+
"warn": null,
|
|
38
|
+
"warn_low": null,
|
|
39
|
+
"crit": null,
|
|
40
|
+
"crit_low": null,
|
|
41
|
+
"ds_color_area_warn": "#ff9a13",
|
|
42
|
+
"ds_color_area_crit": "#e00b3d",
|
|
43
|
+
"ds_order": 0,
|
|
44
|
+
"data": [
|
|
45
|
+
0.05376,
|
|
46
|
+
0.338,
|
|
47
|
+
0.63248,
|
|
48
|
+
0.18326666667,
|
|
49
|
+
0.36706666667,
|
|
50
|
+
0.099166666667,
|
|
51
|
+
0.31305,
|
|
52
|
+
0.37373333333,
|
|
53
|
+
0.43933333333,
|
|
54
|
+
0.464,
|
|
55
|
+
0.35258333333,
|
|
56
|
+
0.28791666667,
|
|
57
|
+
0.56913333333,
|
|
58
|
+
0.76703333333,
|
|
59
|
+
0.67518333333,
|
|
60
|
+
0.90208333333,
|
|
61
|
+
0.32488333333,
|
|
62
|
+
0.47813333333,
|
|
63
|
+
0.071966666667,
|
|
64
|
+
0.3686,
|
|
65
|
+
0.8341,
|
|
66
|
+
0.77396666667,
|
|
67
|
+
0.34295,
|
|
68
|
+
0.51203333333,
|
|
69
|
+
0.23581666667,
|
|
70
|
+
0.14966666667,
|
|
71
|
+
0.53633333333,
|
|
72
|
+
0.66725,
|
|
73
|
+
0.44083333333,
|
|
74
|
+
0.40603333333,
|
|
75
|
+
0.76311666667,
|
|
76
|
+
0.76126666667,
|
|
77
|
+
0.20203333333,
|
|
78
|
+
0.50725,
|
|
79
|
+
0.37375,
|
|
80
|
+
0.7752,
|
|
81
|
+
0.71796666667,
|
|
82
|
+
0.65141666667,
|
|
83
|
+
0.63618333333,
|
|
84
|
+
0.46131666667,
|
|
85
|
+
0.63278333333,
|
|
86
|
+
0.77115,
|
|
87
|
+
0.47151666667,
|
|
88
|
+
0.63983333333,
|
|
89
|
+
0.6915,
|
|
90
|
+
0.55061666667,
|
|
91
|
+
0.7759,
|
|
92
|
+
0.79126666667,
|
|
93
|
+
0.38161666667,
|
|
94
|
+
0.42606666667,
|
|
95
|
+
0.75068333333,
|
|
96
|
+
0.40968333333,
|
|
97
|
+
0.6918,
|
|
98
|
+
0.44128333333,
|
|
99
|
+
0.46593333333,
|
|
100
|
+
0.20545,
|
|
101
|
+
0.61953333333,
|
|
102
|
+
0.72133333333,
|
|
103
|
+
0.61795,
|
|
104
|
+
0.7154,
|
|
105
|
+
0.30433333333,
|
|
106
|
+
0.38171666667,
|
|
107
|
+
0.17726666667,
|
|
108
|
+
0.19431666667,
|
|
109
|
+
0.33643333333,
|
|
110
|
+
0.73506666667,
|
|
111
|
+
0.90695,
|
|
112
|
+
0.83988333333,
|
|
113
|
+
0.92438333333,
|
|
114
|
+
0.54573333333,
|
|
115
|
+
0.3909,
|
|
116
|
+
0.82456666667,
|
|
117
|
+
0.5597,
|
|
118
|
+
0.66463333333,
|
|
119
|
+
0.66005,
|
|
120
|
+
0.52756666667,
|
|
121
|
+
0.67001666667,
|
|
122
|
+
0.4347,
|
|
123
|
+
0.20076666667,
|
|
124
|
+
0.199,
|
|
125
|
+
0.45465,
|
|
126
|
+
0.7167,
|
|
127
|
+
0.4992,
|
|
128
|
+
0.7525,
|
|
129
|
+
0.68343333333,
|
|
130
|
+
0.18691666667,
|
|
131
|
+
0.10928333333,
|
|
132
|
+
0.49846666667,
|
|
133
|
+
0.20756666667,
|
|
134
|
+
0.57808333333,
|
|
135
|
+
0.5091,
|
|
136
|
+
0.21378333333,
|
|
137
|
+
0.33466666667,
|
|
138
|
+
0.35905,
|
|
139
|
+
0.7782,
|
|
140
|
+
0.31376666667,
|
|
141
|
+
0.30773333333,
|
|
142
|
+
0.55781666667,
|
|
143
|
+
0.61033333333,
|
|
144
|
+
0.61753333333,
|
|
145
|
+
0.78033333333,
|
|
146
|
+
0.67196666667,
|
|
147
|
+
0.83675,
|
|
148
|
+
0.5666,
|
|
149
|
+
0.31156666667,
|
|
150
|
+
0.74395,
|
|
151
|
+
0.58471666667,
|
|
152
|
+
0.73915,
|
|
153
|
+
0.411,
|
|
154
|
+
0.25175,
|
|
155
|
+
0.44345,
|
|
156
|
+
0.85811666667,
|
|
157
|
+
0.78576666667,
|
|
158
|
+
0.54195,
|
|
159
|
+
0.6819,
|
|
160
|
+
0.77463333333,
|
|
161
|
+
0.53966666667,
|
|
162
|
+
0.081583333333,
|
|
163
|
+
0.0105,
|
|
164
|
+
0.66158333333,
|
|
165
|
+
0.19941666667,
|
|
166
|
+
0.3885,
|
|
167
|
+
0.72716666667,
|
|
168
|
+
0.34625,
|
|
169
|
+
0.15866666667,
|
|
170
|
+
0.80133333333,
|
|
171
|
+
0.35021666667,
|
|
172
|
+
0.40711666667,
|
|
173
|
+
0.31185,
|
|
174
|
+
0.50205,
|
|
175
|
+
0.88026666667,
|
|
176
|
+
0.57613333333,
|
|
177
|
+
0.43963333333,
|
|
178
|
+
0.32051666667,
|
|
179
|
+
0.50523333333,
|
|
180
|
+
0.6505,
|
|
181
|
+
0.55111666667,
|
|
182
|
+
0.5942,
|
|
183
|
+
0.72986666667,
|
|
184
|
+
0.95238333333,
|
|
185
|
+
0.68285,
|
|
186
|
+
0.46565,
|
|
187
|
+
0.63016666667,
|
|
188
|
+
0.45605,
|
|
189
|
+
0.38395,
|
|
190
|
+
null,
|
|
191
|
+
null,
|
|
192
|
+
null,
|
|
193
|
+
null,
|
|
194
|
+
null,
|
|
195
|
+
null,
|
|
196
|
+
null,
|
|
197
|
+
null,
|
|
198
|
+
null,
|
|
199
|
+
null,
|
|
200
|
+
null,
|
|
201
|
+
null,
|
|
202
|
+
null,
|
|
203
|
+
null,
|
|
204
|
+
null,
|
|
205
|
+
null,
|
|
206
|
+
null,
|
|
207
|
+
null,
|
|
208
|
+
null,
|
|
209
|
+
null,
|
|
210
|
+
null,
|
|
211
|
+
null,
|
|
212
|
+
null,
|
|
213
|
+
null,
|
|
214
|
+
null,
|
|
215
|
+
null,
|
|
216
|
+
null,
|
|
217
|
+
null,
|
|
218
|
+
null,
|
|
219
|
+
null,
|
|
220
|
+
null,
|
|
221
|
+
null,
|
|
222
|
+
null,
|
|
223
|
+
null,
|
|
224
|
+
null,
|
|
225
|
+
null,
|
|
226
|
+
null,
|
|
227
|
+
null,
|
|
228
|
+
null,
|
|
229
|
+
null,
|
|
230
|
+
null,
|
|
231
|
+
null,
|
|
232
|
+
null,
|
|
233
|
+
null,
|
|
234
|
+
null,
|
|
235
|
+
null,
|
|
236
|
+
null,
|
|
237
|
+
null,
|
|
238
|
+
null,
|
|
239
|
+
null,
|
|
240
|
+
null,
|
|
241
|
+
null,
|
|
242
|
+
null,
|
|
243
|
+
null,
|
|
244
|
+
null,
|
|
245
|
+
null,
|
|
246
|
+
null,
|
|
247
|
+
null,
|
|
248
|
+
null,
|
|
249
|
+
null,
|
|
250
|
+
null,
|
|
251
|
+
null,
|
|
252
|
+
null,
|
|
253
|
+
null,
|
|
254
|
+
null,
|
|
255
|
+
null,
|
|
256
|
+
null,
|
|
257
|
+
null,
|
|
258
|
+
null,
|
|
259
|
+
null,
|
|
260
|
+
null,
|
|
261
|
+
null,
|
|
262
|
+
null,
|
|
263
|
+
null,
|
|
264
|
+
null,
|
|
265
|
+
null,
|
|
266
|
+
null,
|
|
267
|
+
null,
|
|
268
|
+
null,
|
|
269
|
+
null,
|
|
270
|
+
null,
|
|
271
|
+
null,
|
|
272
|
+
null,
|
|
273
|
+
null,
|
|
274
|
+
null,
|
|
275
|
+
null,
|
|
276
|
+
null,
|
|
277
|
+
null,
|
|
278
|
+
null,
|
|
279
|
+
null,
|
|
280
|
+
null,
|
|
281
|
+
null,
|
|
282
|
+
null,
|
|
283
|
+
null,
|
|
284
|
+
null,
|
|
285
|
+
null,
|
|
286
|
+
null,
|
|
287
|
+
null,
|
|
288
|
+
null,
|
|
289
|
+
null,
|
|
290
|
+
null,
|
|
291
|
+
null,
|
|
292
|
+
null,
|
|
293
|
+
null,
|
|
294
|
+
null,
|
|
295
|
+
null,
|
|
296
|
+
null,
|
|
297
|
+
null,
|
|
298
|
+
null,
|
|
299
|
+
null,
|
|
300
|
+
null,
|
|
301
|
+
null,
|
|
302
|
+
null,
|
|
303
|
+
null,
|
|
304
|
+
null,
|
|
305
|
+
null,
|
|
306
|
+
null,
|
|
307
|
+
null,
|
|
308
|
+
null,
|
|
309
|
+
null,
|
|
310
|
+
null,
|
|
311
|
+
null,
|
|
312
|
+
null,
|
|
313
|
+
null,
|
|
314
|
+
null,
|
|
315
|
+
null,
|
|
316
|
+
null,
|
|
317
|
+
null,
|
|
318
|
+
null,
|
|
319
|
+
null,
|
|
320
|
+
null,
|
|
321
|
+
null,
|
|
322
|
+
null,
|
|
323
|
+
null,
|
|
324
|
+
null,
|
|
325
|
+
null,
|
|
326
|
+
null,
|
|
327
|
+
null,
|
|
328
|
+
null,
|
|
329
|
+
null,
|
|
330
|
+
null,
|
|
331
|
+
null,
|
|
332
|
+
null,
|
|
333
|
+
null
|
|
334
|
+
],
|
|
335
|
+
"prints": [
|
|
336
|
+
[
|
|
337
|
+
"Last:0.38"
|
|
338
|
+
],
|
|
339
|
+
[
|
|
340
|
+
"Min:0.01"
|
|
341
|
+
],
|
|
342
|
+
[
|
|
343
|
+
"Max:0.95"
|
|
344
|
+
],
|
|
345
|
+
[
|
|
346
|
+
"Average:0.51"
|
|
347
|
+
]
|
|
348
|
+
],
|
|
349
|
+
"last_value": 0.38,
|
|
350
|
+
"minimum_value": 0.01,
|
|
351
|
+
"maximum_value": 0.95,
|
|
352
|
+
"average_value": 0.51
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"index_id": 4811,
|
|
356
|
+
"metric_id": 11757,
|
|
357
|
+
"metric": "querytime",
|
|
358
|
+
"metric_legend": "querytime",
|
|
359
|
+
"unit": "s",
|
|
360
|
+
"hidden": 0,
|
|
361
|
+
"min": null,
|
|
362
|
+
"max": null,
|
|
363
|
+
"virtual": 0,
|
|
364
|
+
"ds_data": {
|
|
365
|
+
"ds_min": "1",
|
|
366
|
+
"ds_max": "1",
|
|
367
|
+
"ds_minmax_int": "0",
|
|
368
|
+
"ds_last": "1",
|
|
369
|
+
"ds_average": "1",
|
|
370
|
+
"ds_total": "0",
|
|
371
|
+
"ds_tickness": 1,
|
|
372
|
+
"ds_color_line_mode": "1",
|
|
373
|
+
"ds_color_line": "#6666ff"
|
|
374
|
+
},
|
|
375
|
+
"legend": "querytime",
|
|
376
|
+
"stack": 0,
|
|
377
|
+
"warn": null,
|
|
378
|
+
"warn_low": null,
|
|
379
|
+
"crit": null,
|
|
380
|
+
"crit_low": null,
|
|
381
|
+
"ds_color_area_warn": "#ff9a13",
|
|
382
|
+
"ds_color_area_crit": "#e00b3d",
|
|
383
|
+
"ds_order": 0,
|
|
384
|
+
"data": [
|
|
385
|
+
0.69412,
|
|
386
|
+
0.29608,
|
|
387
|
+
0.64332,
|
|
388
|
+
0.78435,
|
|
389
|
+
0.49911666667,
|
|
390
|
+
0.26918333333,
|
|
391
|
+
0.91718333333,
|
|
392
|
+
0.5858,
|
|
393
|
+
0.19691666667,
|
|
394
|
+
0.44683333333,
|
|
395
|
+
0.33975,
|
|
396
|
+
0.23175,
|
|
397
|
+
0.54105,
|
|
398
|
+
0.58516666667,
|
|
399
|
+
0.62908333333,
|
|
400
|
+
0.21381666667,
|
|
401
|
+
0.054433333333,
|
|
402
|
+
0.41883333333,
|
|
403
|
+
0.55065,
|
|
404
|
+
0.74241666667,
|
|
405
|
+
0.20685,
|
|
406
|
+
0.73463333333,
|
|
407
|
+
0.67131666667,
|
|
408
|
+
0.27435,
|
|
409
|
+
0.34288333333,
|
|
410
|
+
0.7709,
|
|
411
|
+
0.92633333333,
|
|
412
|
+
0.6353,
|
|
413
|
+
0.7674,
|
|
414
|
+
0.79433333333,
|
|
415
|
+
0.6929,
|
|
416
|
+
0.36873333333,
|
|
417
|
+
0.15238333333,
|
|
418
|
+
0.45986666667,
|
|
419
|
+
0.72241666667,
|
|
420
|
+
0.71251666667,
|
|
421
|
+
0.39875,
|
|
422
|
+
0.70755,
|
|
423
|
+
0.60123333333,
|
|
424
|
+
0.83198333333,
|
|
425
|
+
0.9789,
|
|
426
|
+
0.57765,
|
|
427
|
+
0.17835,
|
|
428
|
+
0.5656,
|
|
429
|
+
0.36398333333,
|
|
430
|
+
0.46198333333,
|
|
431
|
+
0.31618333333,
|
|
432
|
+
0.3781,
|
|
433
|
+
0.25323333333,
|
|
434
|
+
0.1532,
|
|
435
|
+
0.04195,
|
|
436
|
+
0.23205,
|
|
437
|
+
0.78596666667,
|
|
438
|
+
0.43723333333,
|
|
439
|
+
0.28218333333,
|
|
440
|
+
0.72755,
|
|
441
|
+
0.77603333333,
|
|
442
|
+
0.68743333333,
|
|
443
|
+
0.66741666667,
|
|
444
|
+
0.34995,
|
|
445
|
+
0.37335,
|
|
446
|
+
0.69358333333,
|
|
447
|
+
0.27455,
|
|
448
|
+
0.28013333333,
|
|
449
|
+
0.71015,
|
|
450
|
+
0.50801666667,
|
|
451
|
+
0.45211666667,
|
|
452
|
+
0.76751666667,
|
|
453
|
+
0.75243333333,
|
|
454
|
+
0.2591,
|
|
455
|
+
0.43015,
|
|
456
|
+
0.36633333333,
|
|
457
|
+
0.66898333333,
|
|
458
|
+
0.79993333333,
|
|
459
|
+
0.38278333333,
|
|
460
|
+
0.43815,
|
|
461
|
+
0.7089,
|
|
462
|
+
0.57918333333,
|
|
463
|
+
0.36856666667,
|
|
464
|
+
0.65455,
|
|
465
|
+
0.74285,
|
|
466
|
+
0.91205,
|
|
467
|
+
0.78031666667,
|
|
468
|
+
0.71691666667,
|
|
469
|
+
0.69246666667,
|
|
470
|
+
0.5553,
|
|
471
|
+
0.81631666667,
|
|
472
|
+
0.82576666667,
|
|
473
|
+
0.64196666667,
|
|
474
|
+
0.35766666667,
|
|
475
|
+
0.52513333333,
|
|
476
|
+
0.59181666667,
|
|
477
|
+
0.48015,
|
|
478
|
+
0.17466666667,
|
|
479
|
+
0.53273333333,
|
|
480
|
+
0.78308333333,
|
|
481
|
+
0.49533333333,
|
|
482
|
+
0.71715,
|
|
483
|
+
0.45326666667,
|
|
484
|
+
0.34505,
|
|
485
|
+
0.55813333333,
|
|
486
|
+
0.58506666667,
|
|
487
|
+
0.51556666667,
|
|
488
|
+
0.25808333333,
|
|
489
|
+
0.32178333333,
|
|
490
|
+
0.87881666667,
|
|
491
|
+
0.73263333333,
|
|
492
|
+
0.29503333333,
|
|
493
|
+
0.51955,
|
|
494
|
+
0.80328333333,
|
|
495
|
+
0.61133333333,
|
|
496
|
+
0.88905,
|
|
497
|
+
0.73008333333,
|
|
498
|
+
0.46576666667,
|
|
499
|
+
0.75335,
|
|
500
|
+
0.64886666667,
|
|
501
|
+
0.46566666667,
|
|
502
|
+
0.23391666667,
|
|
503
|
+
0.32333333333,
|
|
504
|
+
0.06075,
|
|
505
|
+
0.52183333333,
|
|
506
|
+
0.75116666667,
|
|
507
|
+
0.65341666667,
|
|
508
|
+
0.41658333333,
|
|
509
|
+
0.044,
|
|
510
|
+
0.5455,
|
|
511
|
+
0.66271666667,
|
|
512
|
+
0.45943333333,
|
|
513
|
+
0.34365,
|
|
514
|
+
0.62895,
|
|
515
|
+
0.69748333333,
|
|
516
|
+
0.57913333333,
|
|
517
|
+
0.42935,
|
|
518
|
+
0.3825,
|
|
519
|
+
0.5489,
|
|
520
|
+
0.61453333333,
|
|
521
|
+
0.52853333333,
|
|
522
|
+
0.58836666667,
|
|
523
|
+
0.70246666667,
|
|
524
|
+
0.68868333333,
|
|
525
|
+
0.69335,
|
|
526
|
+
0.4246,
|
|
527
|
+
0.40923333333,
|
|
528
|
+
0.8041,
|
|
529
|
+
0.6626,
|
|
530
|
+
null,
|
|
531
|
+
null,
|
|
532
|
+
null,
|
|
533
|
+
null,
|
|
534
|
+
null,
|
|
535
|
+
null,
|
|
536
|
+
null,
|
|
537
|
+
null,
|
|
538
|
+
null,
|
|
539
|
+
null,
|
|
540
|
+
null,
|
|
541
|
+
null,
|
|
542
|
+
null,
|
|
543
|
+
null,
|
|
544
|
+
null,
|
|
545
|
+
null,
|
|
546
|
+
null,
|
|
547
|
+
null,
|
|
548
|
+
null,
|
|
549
|
+
null,
|
|
550
|
+
null,
|
|
551
|
+
null,
|
|
552
|
+
null,
|
|
553
|
+
null,
|
|
554
|
+
null,
|
|
555
|
+
null,
|
|
556
|
+
null,
|
|
557
|
+
null,
|
|
558
|
+
null,
|
|
559
|
+
null,
|
|
560
|
+
null,
|
|
561
|
+
null,
|
|
562
|
+
null,
|
|
563
|
+
null,
|
|
564
|
+
null,
|
|
565
|
+
null,
|
|
566
|
+
null,
|
|
567
|
+
null,
|
|
568
|
+
null,
|
|
569
|
+
null,
|
|
570
|
+
null,
|
|
571
|
+
null,
|
|
572
|
+
null,
|
|
573
|
+
null,
|
|
574
|
+
null,
|
|
575
|
+
null,
|
|
576
|
+
null,
|
|
577
|
+
null,
|
|
578
|
+
null,
|
|
579
|
+
null,
|
|
580
|
+
null,
|
|
581
|
+
null,
|
|
582
|
+
null,
|
|
583
|
+
null,
|
|
584
|
+
null,
|
|
585
|
+
null,
|
|
586
|
+
null,
|
|
587
|
+
null,
|
|
588
|
+
null,
|
|
589
|
+
null,
|
|
590
|
+
null,
|
|
591
|
+
null,
|
|
592
|
+
null,
|
|
593
|
+
null,
|
|
594
|
+
null,
|
|
595
|
+
null,
|
|
596
|
+
null,
|
|
597
|
+
null,
|
|
598
|
+
null,
|
|
599
|
+
null,
|
|
600
|
+
null,
|
|
601
|
+
null,
|
|
602
|
+
null,
|
|
603
|
+
null,
|
|
604
|
+
null,
|
|
605
|
+
null,
|
|
606
|
+
null,
|
|
607
|
+
null,
|
|
608
|
+
null,
|
|
609
|
+
null,
|
|
610
|
+
null,
|
|
611
|
+
null,
|
|
612
|
+
null,
|
|
613
|
+
null,
|
|
614
|
+
null,
|
|
615
|
+
null,
|
|
616
|
+
null,
|
|
617
|
+
null,
|
|
618
|
+
null,
|
|
619
|
+
null,
|
|
620
|
+
null,
|
|
621
|
+
null,
|
|
622
|
+
null,
|
|
623
|
+
null,
|
|
624
|
+
null,
|
|
625
|
+
null,
|
|
626
|
+
null,
|
|
627
|
+
null,
|
|
628
|
+
null,
|
|
629
|
+
null,
|
|
630
|
+
null,
|
|
631
|
+
null,
|
|
632
|
+
null,
|
|
633
|
+
null,
|
|
634
|
+
null,
|
|
635
|
+
null,
|
|
636
|
+
null,
|
|
637
|
+
null,
|
|
638
|
+
null,
|
|
639
|
+
null,
|
|
640
|
+
null,
|
|
641
|
+
null,
|
|
642
|
+
null,
|
|
643
|
+
null,
|
|
644
|
+
null,
|
|
645
|
+
null,
|
|
646
|
+
null,
|
|
647
|
+
null,
|
|
648
|
+
null,
|
|
649
|
+
null,
|
|
650
|
+
null,
|
|
651
|
+
null,
|
|
652
|
+
null,
|
|
653
|
+
null,
|
|
654
|
+
null,
|
|
655
|
+
null,
|
|
656
|
+
null,
|
|
657
|
+
null,
|
|
658
|
+
null,
|
|
659
|
+
null,
|
|
660
|
+
null,
|
|
661
|
+
null,
|
|
662
|
+
null,
|
|
663
|
+
null,
|
|
664
|
+
null,
|
|
665
|
+
null,
|
|
666
|
+
null,
|
|
667
|
+
null,
|
|
668
|
+
null,
|
|
669
|
+
null,
|
|
670
|
+
null,
|
|
671
|
+
null,
|
|
672
|
+
null,
|
|
673
|
+
null
|
|
674
|
+
],
|
|
675
|
+
"prints": [
|
|
676
|
+
[
|
|
677
|
+
"Last:0.66"
|
|
678
|
+
],
|
|
679
|
+
[
|
|
680
|
+
"Min:0.04"
|
|
681
|
+
],
|
|
682
|
+
[
|
|
683
|
+
"Max:0.98"
|
|
684
|
+
],
|
|
685
|
+
[
|
|
686
|
+
"Average:0.54"
|
|
687
|
+
]
|
|
688
|
+
],
|
|
689
|
+
"last_value": 0.66,
|
|
690
|
+
"minimum_value": 0.04,
|
|
691
|
+
"maximum_value": 0.98,
|
|
692
|
+
"average_value": 0.54
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"index_id": 4811,
|
|
696
|
+
"metric_id": 11756,
|
|
697
|
+
"metric": "used",
|
|
698
|
+
"metric_legend": "used",
|
|
699
|
+
"unit": "%",
|
|
700
|
+
"hidden": 0,
|
|
701
|
+
"min": null,
|
|
702
|
+
"max": null,
|
|
703
|
+
"virtual": 0,
|
|
704
|
+
"ds_data": {
|
|
705
|
+
"compo_id": 8,
|
|
706
|
+
"host_id": null,
|
|
707
|
+
"service_id": null,
|
|
708
|
+
"name": "Used",
|
|
709
|
+
"ds_order": 1,
|
|
710
|
+
"ds_hidecurve": null,
|
|
711
|
+
"ds_name": "used",
|
|
712
|
+
"ds_color_line": "#2B28D7",
|
|
713
|
+
"ds_color_line_mode": "0",
|
|
714
|
+
"ds_color_area": "#050AF9",
|
|
715
|
+
"ds_color_area_warn": null,
|
|
716
|
+
"ds_color_area_crit": null,
|
|
717
|
+
"ds_filled": "1",
|
|
718
|
+
"ds_max": null,
|
|
719
|
+
"ds_min": null,
|
|
720
|
+
"ds_minmax_int": "0",
|
|
721
|
+
"ds_average": "1",
|
|
722
|
+
"ds_last": "1",
|
|
723
|
+
"ds_total": "0",
|
|
724
|
+
"ds_tickness": 1,
|
|
725
|
+
"ds_transparency": "80",
|
|
726
|
+
"ds_invert": null,
|
|
727
|
+
"ds_legend": null,
|
|
728
|
+
"ds_jumpline": "0",
|
|
729
|
+
"ds_stack": null,
|
|
730
|
+
"default_tpl1": null,
|
|
731
|
+
"comment": null
|
|
732
|
+
},
|
|
733
|
+
"legend": "used",
|
|
734
|
+
"stack": 0,
|
|
735
|
+
"warn": null,
|
|
736
|
+
"warn_low": null,
|
|
737
|
+
"crit": null,
|
|
738
|
+
"crit_low": null,
|
|
739
|
+
"ds_color_area_warn": "#ff9a13",
|
|
740
|
+
"ds_color_area_crit": "#e00b3d",
|
|
741
|
+
"ds_order": 1,
|
|
742
|
+
"data": [
|
|
743
|
+
81.5376,
|
|
744
|
+
82.84972,
|
|
745
|
+
83.50108,
|
|
746
|
+
84.304366667,
|
|
747
|
+
85.243566667,
|
|
748
|
+
84.993333333,
|
|
749
|
+
85.029616667,
|
|
750
|
+
85.006383333,
|
|
751
|
+
87.494416667,
|
|
752
|
+
87.404,
|
|
753
|
+
85.760416667,
|
|
754
|
+
84.159166667,
|
|
755
|
+
84.6812,
|
|
756
|
+
84.468933333,
|
|
757
|
+
84.2907,
|
|
758
|
+
85.632833333,
|
|
759
|
+
86.488066667,
|
|
760
|
+
86.844516667,
|
|
761
|
+
85.46465,
|
|
762
|
+
84.358816667,
|
|
763
|
+
82.004933333,
|
|
764
|
+
82.207066667,
|
|
765
|
+
81.247933333,
|
|
766
|
+
79.504016667,
|
|
767
|
+
79.532266667,
|
|
768
|
+
79.924433333,
|
|
769
|
+
79.03195,
|
|
770
|
+
78.851233333,
|
|
771
|
+
79.726933333,
|
|
772
|
+
78.68965,
|
|
773
|
+
78.418016667,
|
|
774
|
+
78.223866667,
|
|
775
|
+
76.752933333,
|
|
776
|
+
75.281316667,
|
|
777
|
+
73.84245,
|
|
778
|
+
74.192566667,
|
|
779
|
+
73.325533333,
|
|
780
|
+
72.3546,
|
|
781
|
+
71.02525,
|
|
782
|
+
70.578283333,
|
|
783
|
+
70.88545,
|
|
784
|
+
73.86865,
|
|
785
|
+
74.6044,
|
|
786
|
+
74.356266667,
|
|
787
|
+
74.481966667,
|
|
788
|
+
74.988183333,
|
|
789
|
+
74.891383333,
|
|
790
|
+
74.5475,
|
|
791
|
+
75.7053,
|
|
792
|
+
76.809883333,
|
|
793
|
+
77.069633333,
|
|
794
|
+
76.012033333,
|
|
795
|
+
75.40825,
|
|
796
|
+
74.519,
|
|
797
|
+
73.10165,
|
|
798
|
+
73.826416667,
|
|
799
|
+
73.605316667,
|
|
800
|
+
72.003283333,
|
|
801
|
+
71.210116667,
|
|
802
|
+
70.476483333,
|
|
803
|
+
73.647933333,
|
|
804
|
+
76.360233333,
|
|
805
|
+
78.137116667,
|
|
806
|
+
78.928,
|
|
807
|
+
78.254366667,
|
|
808
|
+
78.312233333,
|
|
809
|
+
78.939166667,
|
|
810
|
+
79.256566667,
|
|
811
|
+
78.5502,
|
|
812
|
+
77.899116667,
|
|
813
|
+
77.274816667,
|
|
814
|
+
77.20985,
|
|
815
|
+
77.566733333,
|
|
816
|
+
77.3999,
|
|
817
|
+
78.054983333,
|
|
818
|
+
77.6581,
|
|
819
|
+
78.215916667,
|
|
820
|
+
78.121733333,
|
|
821
|
+
78.28725,
|
|
822
|
+
78.265633333,
|
|
823
|
+
79.1123,
|
|
824
|
+
79.665216667,
|
|
825
|
+
81.06855,
|
|
826
|
+
81.349333333,
|
|
827
|
+
81.25085,
|
|
828
|
+
82.1874,
|
|
829
|
+
82.52145,
|
|
830
|
+
83.712433333,
|
|
831
|
+
85.337816667,
|
|
832
|
+
84.673283333,
|
|
833
|
+
83.360283333,
|
|
834
|
+
83.58445,
|
|
835
|
+
84.609016667,
|
|
836
|
+
84.876033333,
|
|
837
|
+
86.26595,
|
|
838
|
+
86.732966667,
|
|
839
|
+
87.697766667,
|
|
840
|
+
88.536166667,
|
|
841
|
+
87.30565,
|
|
842
|
+
86.810316667,
|
|
843
|
+
87.667166667,
|
|
844
|
+
88.473583333,
|
|
845
|
+
88.096516667,
|
|
846
|
+
87.201566667,
|
|
847
|
+
87.690583333,
|
|
848
|
+
88.866416667,
|
|
849
|
+
88.943983333,
|
|
850
|
+
87.828033333,
|
|
851
|
+
86.688216667,
|
|
852
|
+
85.928366667,
|
|
853
|
+
85.887183333,
|
|
854
|
+
86.7506,
|
|
855
|
+
86.304166667,
|
|
856
|
+
85.379783333,
|
|
857
|
+
85.705133333,
|
|
858
|
+
84.564433333,
|
|
859
|
+
82.771166667,
|
|
860
|
+
81.506916667,
|
|
861
|
+
82.213583333,
|
|
862
|
+
82.514333333,
|
|
863
|
+
83.525916667,
|
|
864
|
+
83.594916667,
|
|
865
|
+
84.6655,
|
|
866
|
+
85.179166667,
|
|
867
|
+
85.782583333,
|
|
868
|
+
84.465416667,
|
|
869
|
+
83.6318,
|
|
870
|
+
84.248066667,
|
|
871
|
+
86.10535,
|
|
872
|
+
87.008783333,
|
|
873
|
+
87.892233333,
|
|
874
|
+
89.5511,
|
|
875
|
+
91.161083333,
|
|
876
|
+
92.036366667,
|
|
877
|
+
91.702066667,
|
|
878
|
+
90.579833333,
|
|
879
|
+
90.5435,
|
|
880
|
+
90.649233333,
|
|
881
|
+
90.199233333,
|
|
882
|
+
90.253016667,
|
|
883
|
+
91.326716667,
|
|
884
|
+
93.229816667,
|
|
885
|
+
93.5479,
|
|
886
|
+
93.26945,
|
|
887
|
+
93.073233333,
|
|
888
|
+
null,
|
|
889
|
+
null,
|
|
890
|
+
null,
|
|
891
|
+
null,
|
|
892
|
+
null,
|
|
893
|
+
null,
|
|
894
|
+
null,
|
|
895
|
+
null,
|
|
896
|
+
null,
|
|
897
|
+
null,
|
|
898
|
+
null,
|
|
899
|
+
null,
|
|
900
|
+
null,
|
|
901
|
+
null,
|
|
902
|
+
null,
|
|
903
|
+
null,
|
|
904
|
+
null,
|
|
905
|
+
null,
|
|
906
|
+
null,
|
|
907
|
+
null,
|
|
908
|
+
null,
|
|
909
|
+
null,
|
|
910
|
+
null,
|
|
911
|
+
null,
|
|
912
|
+
null,
|
|
913
|
+
null,
|
|
914
|
+
null,
|
|
915
|
+
null,
|
|
916
|
+
null,
|
|
917
|
+
null,
|
|
918
|
+
null,
|
|
919
|
+
null,
|
|
920
|
+
null,
|
|
921
|
+
null,
|
|
922
|
+
null,
|
|
923
|
+
null,
|
|
924
|
+
null,
|
|
925
|
+
null,
|
|
926
|
+
null,
|
|
927
|
+
null,
|
|
928
|
+
null,
|
|
929
|
+
null,
|
|
930
|
+
null,
|
|
931
|
+
null,
|
|
932
|
+
null,
|
|
933
|
+
null,
|
|
934
|
+
null,
|
|
935
|
+
null,
|
|
936
|
+
null,
|
|
937
|
+
null,
|
|
938
|
+
null,
|
|
939
|
+
null,
|
|
940
|
+
null,
|
|
941
|
+
null,
|
|
942
|
+
null,
|
|
943
|
+
null,
|
|
944
|
+
null,
|
|
945
|
+
null,
|
|
946
|
+
null,
|
|
947
|
+
null,
|
|
948
|
+
null,
|
|
949
|
+
null,
|
|
950
|
+
null,
|
|
951
|
+
null,
|
|
952
|
+
null,
|
|
953
|
+
null,
|
|
954
|
+
null,
|
|
955
|
+
null,
|
|
956
|
+
null,
|
|
957
|
+
null,
|
|
958
|
+
null,
|
|
959
|
+
null,
|
|
960
|
+
null,
|
|
961
|
+
null,
|
|
962
|
+
null,
|
|
963
|
+
null,
|
|
964
|
+
null,
|
|
965
|
+
null,
|
|
966
|
+
null,
|
|
967
|
+
null,
|
|
968
|
+
null,
|
|
969
|
+
null,
|
|
970
|
+
null,
|
|
971
|
+
null,
|
|
972
|
+
null,
|
|
973
|
+
null,
|
|
974
|
+
null,
|
|
975
|
+
null,
|
|
976
|
+
null,
|
|
977
|
+
null,
|
|
978
|
+
null,
|
|
979
|
+
null,
|
|
980
|
+
null,
|
|
981
|
+
null,
|
|
982
|
+
null,
|
|
983
|
+
null,
|
|
984
|
+
null,
|
|
985
|
+
null,
|
|
986
|
+
null,
|
|
987
|
+
null,
|
|
988
|
+
null,
|
|
989
|
+
null,
|
|
990
|
+
null,
|
|
991
|
+
null,
|
|
992
|
+
null,
|
|
993
|
+
null,
|
|
994
|
+
null,
|
|
995
|
+
null,
|
|
996
|
+
null,
|
|
997
|
+
null,
|
|
998
|
+
null,
|
|
999
|
+
null,
|
|
1000
|
+
null,
|
|
1001
|
+
null,
|
|
1002
|
+
null,
|
|
1003
|
+
null,
|
|
1004
|
+
null,
|
|
1005
|
+
null,
|
|
1006
|
+
null,
|
|
1007
|
+
null,
|
|
1008
|
+
null,
|
|
1009
|
+
null,
|
|
1010
|
+
null,
|
|
1011
|
+
null,
|
|
1012
|
+
null,
|
|
1013
|
+
null,
|
|
1014
|
+
null,
|
|
1015
|
+
null,
|
|
1016
|
+
null,
|
|
1017
|
+
null,
|
|
1018
|
+
null,
|
|
1019
|
+
null,
|
|
1020
|
+
null,
|
|
1021
|
+
null,
|
|
1022
|
+
null,
|
|
1023
|
+
null,
|
|
1024
|
+
null,
|
|
1025
|
+
null,
|
|
1026
|
+
null,
|
|
1027
|
+
null,
|
|
1028
|
+
null,
|
|
1029
|
+
null,
|
|
1030
|
+
null,
|
|
1031
|
+
null
|
|
1032
|
+
],
|
|
1033
|
+
"prints": [
|
|
1034
|
+
[
|
|
1035
|
+
"Last:93.07"
|
|
1036
|
+
],
|
|
1037
|
+
[
|
|
1038
|
+
"Average:82.08"
|
|
1039
|
+
]
|
|
1040
|
+
],
|
|
1041
|
+
"last_value": 93.07,
|
|
1042
|
+
"minimum_value": null,
|
|
1043
|
+
"maximum_value": null,
|
|
1044
|
+
"average_value": 82.08
|
|
1045
|
+
}
|
|
1046
|
+
],
|
|
1047
|
+
"times": [
|
|
1048
|
+
"2023-06-07T09:30:00+02:00",
|
|
1049
|
+
"2023-06-07T09:35:00+02:00",
|
|
1050
|
+
"2023-06-07T09:40:00+02:00",
|
|
1051
|
+
"2023-06-07T09:45:00+02:00",
|
|
1052
|
+
"2023-06-07T09:50:00+02:00",
|
|
1053
|
+
"2023-06-07T09:55:00+02:00",
|
|
1054
|
+
"2023-06-07T10:00:00+02:00",
|
|
1055
|
+
"2023-06-07T10:05:00+02:00",
|
|
1056
|
+
"2023-06-07T10:10:00+02:00",
|
|
1057
|
+
"2023-06-07T10:15:00+02:00",
|
|
1058
|
+
"2023-06-07T10:20:00+02:00",
|
|
1059
|
+
"2023-06-07T10:25:00+02:00",
|
|
1060
|
+
"2023-06-07T10:30:00+02:00",
|
|
1061
|
+
"2023-06-07T10:35:00+02:00",
|
|
1062
|
+
"2023-06-07T10:40:00+02:00",
|
|
1063
|
+
"2023-06-07T10:45:00+02:00",
|
|
1064
|
+
"2023-06-07T10:50:00+02:00",
|
|
1065
|
+
"2023-06-07T10:55:00+02:00",
|
|
1066
|
+
"2023-06-07T11:00:00+02:00",
|
|
1067
|
+
"2023-06-07T11:05:00+02:00",
|
|
1068
|
+
"2023-06-07T11:10:00+02:00",
|
|
1069
|
+
"2023-06-07T11:15:00+02:00",
|
|
1070
|
+
"2023-06-07T11:20:00+02:00",
|
|
1071
|
+
"2023-06-07T11:25:00+02:00",
|
|
1072
|
+
"2023-06-07T11:30:00+02:00",
|
|
1073
|
+
"2023-06-07T11:35:00+02:00",
|
|
1074
|
+
"2023-06-07T11:40:00+02:00",
|
|
1075
|
+
"2023-06-07T11:45:00+02:00",
|
|
1076
|
+
"2023-06-07T11:50:00+02:00",
|
|
1077
|
+
"2023-06-07T11:55:00+02:00",
|
|
1078
|
+
"2023-06-07T12:00:00+02:00",
|
|
1079
|
+
"2023-06-07T12:05:00+02:00",
|
|
1080
|
+
"2023-06-07T12:10:00+02:00",
|
|
1081
|
+
"2023-06-07T12:15:00+02:00",
|
|
1082
|
+
"2023-06-07T12:20:00+02:00",
|
|
1083
|
+
"2023-06-07T12:25:00+02:00",
|
|
1084
|
+
"2023-06-07T12:30:00+02:00",
|
|
1085
|
+
"2023-06-07T12:35:00+02:00",
|
|
1086
|
+
"2023-06-07T12:40:00+02:00",
|
|
1087
|
+
"2023-06-07T12:45:00+02:00",
|
|
1088
|
+
"2023-06-07T12:50:00+02:00",
|
|
1089
|
+
"2023-06-07T12:55:00+02:00",
|
|
1090
|
+
"2023-06-07T13:00:00+02:00",
|
|
1091
|
+
"2023-06-07T13:05:00+02:00",
|
|
1092
|
+
"2023-06-07T13:10:00+02:00",
|
|
1093
|
+
"2023-06-07T13:15:00+02:00",
|
|
1094
|
+
"2023-06-07T13:20:00+02:00",
|
|
1095
|
+
"2023-06-07T13:25:00+02:00",
|
|
1096
|
+
"2023-06-07T13:30:00+02:00",
|
|
1097
|
+
"2023-06-07T13:35:00+02:00",
|
|
1098
|
+
"2023-06-07T13:40:00+02:00",
|
|
1099
|
+
"2023-06-07T13:45:00+02:00",
|
|
1100
|
+
"2023-06-07T13:50:00+02:00",
|
|
1101
|
+
"2023-06-07T13:55:00+02:00",
|
|
1102
|
+
"2023-06-07T14:00:00+02:00",
|
|
1103
|
+
"2023-06-07T14:05:00+02:00",
|
|
1104
|
+
"2023-06-07T14:10:00+02:00",
|
|
1105
|
+
"2023-06-07T14:15:00+02:00",
|
|
1106
|
+
"2023-06-07T14:20:00+02:00",
|
|
1107
|
+
"2023-06-07T14:25:00+02:00",
|
|
1108
|
+
"2023-06-07T14:30:00+02:00",
|
|
1109
|
+
"2023-06-07T14:35:00+02:00",
|
|
1110
|
+
"2023-06-07T14:40:00+02:00",
|
|
1111
|
+
"2023-06-07T14:45:00+02:00",
|
|
1112
|
+
"2023-06-07T14:50:00+02:00",
|
|
1113
|
+
"2023-06-07T14:55:00+02:00",
|
|
1114
|
+
"2023-06-07T15:00:00+02:00",
|
|
1115
|
+
"2023-06-07T15:05:00+02:00",
|
|
1116
|
+
"2023-06-07T15:10:00+02:00",
|
|
1117
|
+
"2023-06-07T15:15:00+02:00",
|
|
1118
|
+
"2023-06-07T15:20:00+02:00",
|
|
1119
|
+
"2023-06-07T15:25:00+02:00",
|
|
1120
|
+
"2023-06-07T15:30:00+02:00",
|
|
1121
|
+
"2023-06-07T15:35:00+02:00",
|
|
1122
|
+
"2023-06-07T15:40:00+02:00",
|
|
1123
|
+
"2023-06-07T15:45:00+02:00",
|
|
1124
|
+
"2023-06-07T15:50:00+02:00",
|
|
1125
|
+
"2023-06-07T15:55:00+02:00",
|
|
1126
|
+
"2023-06-07T16:00:00+02:00",
|
|
1127
|
+
"2023-06-07T16:05:00+02:00",
|
|
1128
|
+
"2023-06-07T16:10:00+02:00",
|
|
1129
|
+
"2023-06-07T16:15:00+02:00",
|
|
1130
|
+
"2023-06-07T16:20:00+02:00",
|
|
1131
|
+
"2023-06-07T16:25:00+02:00",
|
|
1132
|
+
"2023-06-07T16:30:00+02:00",
|
|
1133
|
+
"2023-06-07T16:35:00+02:00",
|
|
1134
|
+
"2023-06-07T16:40:00+02:00",
|
|
1135
|
+
"2023-06-07T16:45:00+02:00",
|
|
1136
|
+
"2023-06-07T16:50:00+02:00",
|
|
1137
|
+
"2023-06-07T16:55:00+02:00",
|
|
1138
|
+
"2023-06-07T17:00:00+02:00",
|
|
1139
|
+
"2023-06-07T17:05:00+02:00",
|
|
1140
|
+
"2023-06-07T17:10:00+02:00",
|
|
1141
|
+
"2023-06-07T17:15:00+02:00",
|
|
1142
|
+
"2023-06-07T17:20:00+02:00",
|
|
1143
|
+
"2023-06-07T17:25:00+02:00",
|
|
1144
|
+
"2023-06-07T17:30:00+02:00",
|
|
1145
|
+
"2023-06-07T17:35:00+02:00",
|
|
1146
|
+
"2023-06-07T17:40:00+02:00",
|
|
1147
|
+
"2023-06-07T17:45:00+02:00",
|
|
1148
|
+
"2023-06-07T17:50:00+02:00",
|
|
1149
|
+
"2023-06-07T17:55:00+02:00",
|
|
1150
|
+
"2023-06-07T18:00:00+02:00",
|
|
1151
|
+
"2023-06-07T18:05:00+02:00",
|
|
1152
|
+
"2023-06-07T18:10:00+02:00",
|
|
1153
|
+
"2023-06-07T18:15:00+02:00",
|
|
1154
|
+
"2023-06-07T18:20:00+02:00",
|
|
1155
|
+
"2023-06-07T18:25:00+02:00",
|
|
1156
|
+
"2023-06-07T18:30:00+02:00",
|
|
1157
|
+
"2023-06-07T18:35:00+02:00",
|
|
1158
|
+
"2023-06-07T18:40:00+02:00",
|
|
1159
|
+
"2023-06-07T18:45:00+02:00",
|
|
1160
|
+
"2023-06-07T18:50:00+02:00",
|
|
1161
|
+
"2023-06-07T18:55:00+02:00",
|
|
1162
|
+
"2023-06-07T19:00:00+02:00",
|
|
1163
|
+
"2023-06-07T19:05:00+02:00",
|
|
1164
|
+
"2023-06-07T19:10:00+02:00",
|
|
1165
|
+
"2023-06-07T19:15:00+02:00",
|
|
1166
|
+
"2023-06-07T19:20:00+02:00",
|
|
1167
|
+
"2023-06-07T19:25:00+02:00",
|
|
1168
|
+
"2023-06-07T19:30:00+02:00",
|
|
1169
|
+
"2023-06-07T19:35:00+02:00",
|
|
1170
|
+
"2023-06-07T19:40:00+02:00",
|
|
1171
|
+
"2023-06-07T19:45:00+02:00",
|
|
1172
|
+
"2023-06-07T19:50:00+02:00",
|
|
1173
|
+
"2023-06-07T19:55:00+02:00",
|
|
1174
|
+
"2023-06-07T20:00:00+02:00",
|
|
1175
|
+
"2023-06-07T20:05:00+02:00",
|
|
1176
|
+
"2023-06-07T20:10:00+02:00",
|
|
1177
|
+
"2023-06-07T20:15:00+02:00",
|
|
1178
|
+
"2023-06-07T20:20:00+02:00",
|
|
1179
|
+
"2023-06-07T20:25:00+02:00",
|
|
1180
|
+
"2023-06-07T20:30:00+02:00",
|
|
1181
|
+
"2023-06-07T20:35:00+02:00",
|
|
1182
|
+
"2023-06-07T20:40:00+02:00",
|
|
1183
|
+
"2023-06-07T20:45:00+02:00",
|
|
1184
|
+
"2023-06-07T20:50:00+02:00",
|
|
1185
|
+
"2023-06-07T20:55:00+02:00",
|
|
1186
|
+
"2023-06-07T21:00:00+02:00",
|
|
1187
|
+
"2023-06-07T21:05:00+02:00",
|
|
1188
|
+
"2023-06-07T21:10:00+02:00",
|
|
1189
|
+
"2023-06-07T21:15:00+02:00",
|
|
1190
|
+
"2023-06-07T21:20:00+02:00",
|
|
1191
|
+
"2023-06-07T21:25:00+02:00",
|
|
1192
|
+
"2023-06-07T21:30:00+02:00",
|
|
1193
|
+
"2023-06-07T21:35:00+02:00",
|
|
1194
|
+
"2023-06-07T21:40:00+02:00",
|
|
1195
|
+
"2023-06-07T21:45:00+02:00",
|
|
1196
|
+
"2023-06-07T21:50:00+02:00",
|
|
1197
|
+
"2023-06-07T21:55:00+02:00",
|
|
1198
|
+
"2023-06-07T22:00:00+02:00",
|
|
1199
|
+
"2023-06-07T22:05:00+02:00",
|
|
1200
|
+
"2023-06-07T22:10:00+02:00",
|
|
1201
|
+
"2023-06-07T22:15:00+02:00",
|
|
1202
|
+
"2023-06-07T22:20:00+02:00",
|
|
1203
|
+
"2023-06-07T22:25:00+02:00",
|
|
1204
|
+
"2023-06-07T22:30:00+02:00",
|
|
1205
|
+
"2023-06-07T22:35:00+02:00",
|
|
1206
|
+
"2023-06-07T22:40:00+02:00",
|
|
1207
|
+
"2023-06-07T22:45:00+02:00",
|
|
1208
|
+
"2023-06-07T22:50:00+02:00",
|
|
1209
|
+
"2023-06-07T22:55:00+02:00",
|
|
1210
|
+
"2023-06-07T23:00:00+02:00",
|
|
1211
|
+
"2023-06-07T23:05:00+02:00",
|
|
1212
|
+
"2023-06-07T23:10:00+02:00",
|
|
1213
|
+
"2023-06-07T23:15:00+02:00",
|
|
1214
|
+
"2023-06-07T23:20:00+02:00",
|
|
1215
|
+
"2023-06-07T23:25:00+02:00",
|
|
1216
|
+
"2023-06-07T23:30:00+02:00",
|
|
1217
|
+
"2023-06-07T23:35:00+02:00",
|
|
1218
|
+
"2023-06-07T23:40:00+02:00",
|
|
1219
|
+
"2023-06-07T23:45:00+02:00",
|
|
1220
|
+
"2023-06-07T23:50:00+02:00",
|
|
1221
|
+
"2023-06-07T23:55:00+02:00",
|
|
1222
|
+
"2023-06-08T00:00:00+02:00",
|
|
1223
|
+
"2023-06-08T00:05:00+02:00",
|
|
1224
|
+
"2023-06-08T00:10:00+02:00",
|
|
1225
|
+
"2023-06-08T00:15:00+02:00",
|
|
1226
|
+
"2023-06-08T00:20:00+02:00",
|
|
1227
|
+
"2023-06-08T00:25:00+02:00",
|
|
1228
|
+
"2023-06-08T00:30:00+02:00",
|
|
1229
|
+
"2023-06-08T00:35:00+02:00",
|
|
1230
|
+
"2023-06-08T00:40:00+02:00",
|
|
1231
|
+
"2023-06-08T00:45:00+02:00",
|
|
1232
|
+
"2023-06-08T00:50:00+02:00",
|
|
1233
|
+
"2023-06-08T00:55:00+02:00",
|
|
1234
|
+
"2023-06-08T01:00:00+02:00",
|
|
1235
|
+
"2023-06-08T01:05:00+02:00",
|
|
1236
|
+
"2023-06-08T01:10:00+02:00",
|
|
1237
|
+
"2023-06-08T01:15:00+02:00",
|
|
1238
|
+
"2023-06-08T01:20:00+02:00",
|
|
1239
|
+
"2023-06-08T01:25:00+02:00",
|
|
1240
|
+
"2023-06-08T01:30:00+02:00",
|
|
1241
|
+
"2023-06-08T01:35:00+02:00",
|
|
1242
|
+
"2023-06-08T01:40:00+02:00",
|
|
1243
|
+
"2023-06-08T01:45:00+02:00",
|
|
1244
|
+
"2023-06-08T01:50:00+02:00",
|
|
1245
|
+
"2023-06-08T01:55:00+02:00",
|
|
1246
|
+
"2023-06-08T02:00:00+02:00",
|
|
1247
|
+
"2023-06-08T02:05:00+02:00",
|
|
1248
|
+
"2023-06-08T02:10:00+02:00",
|
|
1249
|
+
"2023-06-08T02:15:00+02:00",
|
|
1250
|
+
"2023-06-08T02:20:00+02:00",
|
|
1251
|
+
"2023-06-08T02:25:00+02:00",
|
|
1252
|
+
"2023-06-08T02:30:00+02:00",
|
|
1253
|
+
"2023-06-08T02:35:00+02:00",
|
|
1254
|
+
"2023-06-08T02:40:00+02:00",
|
|
1255
|
+
"2023-06-08T02:45:00+02:00",
|
|
1256
|
+
"2023-06-08T02:50:00+02:00",
|
|
1257
|
+
"2023-06-08T02:55:00+02:00",
|
|
1258
|
+
"2023-06-08T03:00:00+02:00",
|
|
1259
|
+
"2023-06-08T03:05:00+02:00",
|
|
1260
|
+
"2023-06-08T03:10:00+02:00",
|
|
1261
|
+
"2023-06-08T03:15:00+02:00",
|
|
1262
|
+
"2023-06-08T03:20:00+02:00",
|
|
1263
|
+
"2023-06-08T03:25:00+02:00",
|
|
1264
|
+
"2023-06-08T03:30:00+02:00",
|
|
1265
|
+
"2023-06-08T03:35:00+02:00",
|
|
1266
|
+
"2023-06-08T03:40:00+02:00",
|
|
1267
|
+
"2023-06-08T03:45:00+02:00",
|
|
1268
|
+
"2023-06-08T03:50:00+02:00",
|
|
1269
|
+
"2023-06-08T03:55:00+02:00",
|
|
1270
|
+
"2023-06-08T04:00:00+02:00",
|
|
1271
|
+
"2023-06-08T04:05:00+02:00",
|
|
1272
|
+
"2023-06-08T04:10:00+02:00",
|
|
1273
|
+
"2023-06-08T04:15:00+02:00",
|
|
1274
|
+
"2023-06-08T04:20:00+02:00",
|
|
1275
|
+
"2023-06-08T04:25:00+02:00",
|
|
1276
|
+
"2023-06-08T04:30:00+02:00",
|
|
1277
|
+
"2023-06-08T04:35:00+02:00",
|
|
1278
|
+
"2023-06-08T04:40:00+02:00",
|
|
1279
|
+
"2023-06-08T04:45:00+02:00",
|
|
1280
|
+
"2023-06-08T04:50:00+02:00",
|
|
1281
|
+
"2023-06-08T04:55:00+02:00",
|
|
1282
|
+
"2023-06-08T05:00:00+02:00",
|
|
1283
|
+
"2023-06-08T05:05:00+02:00",
|
|
1284
|
+
"2023-06-08T05:10:00+02:00",
|
|
1285
|
+
"2023-06-08T05:15:00+02:00",
|
|
1286
|
+
"2023-06-08T05:20:00+02:00",
|
|
1287
|
+
"2023-06-08T05:25:00+02:00",
|
|
1288
|
+
"2023-06-08T05:30:00+02:00",
|
|
1289
|
+
"2023-06-08T05:35:00+02:00",
|
|
1290
|
+
"2023-06-08T05:40:00+02:00",
|
|
1291
|
+
"2023-06-08T05:45:00+02:00",
|
|
1292
|
+
"2023-06-08T05:50:00+02:00",
|
|
1293
|
+
"2023-06-08T05:55:00+02:00",
|
|
1294
|
+
"2023-06-08T06:00:00+02:00",
|
|
1295
|
+
"2023-06-08T06:05:00+02:00",
|
|
1296
|
+
"2023-06-08T06:10:00+02:00",
|
|
1297
|
+
"2023-06-08T06:15:00+02:00",
|
|
1298
|
+
"2023-06-08T06:20:00+02:00",
|
|
1299
|
+
"2023-06-08T06:25:00+02:00",
|
|
1300
|
+
"2023-06-08T06:30:00+02:00",
|
|
1301
|
+
"2023-06-08T06:35:00+02:00",
|
|
1302
|
+
"2023-06-08T06:40:00+02:00",
|
|
1303
|
+
"2023-06-08T06:45:00+02:00",
|
|
1304
|
+
"2023-06-08T06:50:00+02:00",
|
|
1305
|
+
"2023-06-08T06:55:00+02:00",
|
|
1306
|
+
"2023-06-08T07:00:00+02:00",
|
|
1307
|
+
"2023-06-08T07:05:00+02:00",
|
|
1308
|
+
"2023-06-08T07:10:00+02:00",
|
|
1309
|
+
"2023-06-08T07:15:00+02:00",
|
|
1310
|
+
"2023-06-08T07:20:00+02:00",
|
|
1311
|
+
"2023-06-08T07:25:00+02:00",
|
|
1312
|
+
"2023-06-08T07:30:00+02:00",
|
|
1313
|
+
"2023-06-08T07:35:00+02:00",
|
|
1314
|
+
"2023-06-08T07:40:00+02:00",
|
|
1315
|
+
"2023-06-08T07:45:00+02:00",
|
|
1316
|
+
"2023-06-08T07:50:00+02:00",
|
|
1317
|
+
"2023-06-08T07:55:00+02:00",
|
|
1318
|
+
"2023-06-08T08:00:00+02:00",
|
|
1319
|
+
"2023-06-08T08:05:00+02:00",
|
|
1320
|
+
"2023-06-08T08:10:00+02:00",
|
|
1321
|
+
"2023-06-08T08:15:00+02:00",
|
|
1322
|
+
"2023-06-08T08:20:00+02:00",
|
|
1323
|
+
"2023-06-08T08:25:00+02:00",
|
|
1324
|
+
"2023-06-08T08:30:00+02:00",
|
|
1325
|
+
"2023-06-08T08:35:00+02:00",
|
|
1326
|
+
"2023-06-08T08:40:00+02:00",
|
|
1327
|
+
"2023-06-08T08:45:00+02:00",
|
|
1328
|
+
"2023-06-08T08:50:00+02:00",
|
|
1329
|
+
"2023-06-08T08:55:00+02:00",
|
|
1330
|
+
"2023-06-08T09:00:00+02:00",
|
|
1331
|
+
"2023-06-08T09:05:00+02:00",
|
|
1332
|
+
"2023-06-08T09:10:00+02:00",
|
|
1333
|
+
"2023-06-08T09:15:00+02:00",
|
|
1334
|
+
"2023-06-08T09:20:00+02:00",
|
|
1335
|
+
"2023-06-08T09:25:00+02:00",
|
|
1336
|
+
"2023-06-08T09:30:00+02:00"
|
|
1337
|
+
]
|
|
1338
|
+
}
|