@scality/core-ui 0.115.0
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/.babelrc +17 -0
- package/.eslintrc.json +7 -0
- package/.flowconfig +21 -0
- package/.github/ISSUE_TEMPLATE/bug.md +18 -0
- package/.github/ISSUE_TEMPLATE/improvement.md +18 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +24 -0
- package/.github/workflows/codeql.yaml +25 -0
- package/.github/workflows/dependency-review.yaml +16 -0
- package/.github/workflows/github-pages.yml +17 -0
- package/.github/workflows/post-release.yml +52 -0
- package/.github/workflows/tests.yaml +32 -0
- package/.prettierrc +5 -0
- package/.storybook/main.ts +38 -0
- package/.storybook/manager.ts +6 -0
- package/.storybook/preview-head.html +99 -0
- package/.storybook/preview.js +68 -0
- package/.storybook/public/favicon.ico +0 -0
- package/.storybook/public/logo-core-ui.png +0 -0
- package/.storybook/theme.storybook.ts +13 -0
- package/LICENSE +201 -0
- package/README.md +296 -0
- package/__mocks__/fileMock.js +2 -0
- package/__mocks__/styleMock.js +2 -0
- package/dist/components/IconHelper.d.ts +10 -0
- package/dist/components/IconHelper.d.ts.map +1 -0
- package/dist/components/IconHelper.js +4 -0
- package/dist/components/areachart/AreaChart.component.d.ts +14 -0
- package/dist/components/areachart/AreaChart.component.d.ts.map +1 -0
- package/dist/components/areachart/AreaChart.component.js +27 -0
- package/dist/components/banner/Banner.component.d.ts +11 -0
- package/dist/components/banner/Banner.component.d.ts.map +1 -0
- package/dist/components/banner/Banner.component.js +40 -0
- package/dist/components/barchart/BarChart.component.d.ts +13 -0
- package/dist/components/barchart/BarChart.component.d.ts.map +1 -0
- package/dist/components/barchart/BarChart.component.js +22 -0
- package/dist/components/box/Box.d.ts +9 -0
- package/dist/components/box/Box.d.ts.map +1 -0
- package/dist/components/box/Box.js +21 -0
- package/dist/components/breadcrumb/Breadcrumb.component.d.ts +7 -0
- package/dist/components/breadcrumb/Breadcrumb.component.d.ts.map +1 -0
- package/dist/components/breadcrumb/Breadcrumb.component.js +77 -0
- package/dist/components/button/Button.component.d.ts +28 -0
- package/dist/components/button/Button.component.d.ts.map +1 -0
- package/dist/components/button/Button.component.js +227 -0
- package/dist/components/buttonv2/Buttonv2.component.d.ts +34 -0
- package/dist/components/buttonv2/Buttonv2.component.d.ts.map +1 -0
- package/dist/components/buttonv2/Buttonv2.component.js +198 -0
- package/dist/components/buttonv2/CopyButton.component.d.ts +24 -0
- package/dist/components/buttonv2/CopyButton.component.d.ts.map +1 -0
- package/dist/components/buttonv2/CopyButton.component.js +52 -0
- package/dist/components/card/Card.component.d.ts +28 -0
- package/dist/components/card/Card.component.d.ts.map +1 -0
- package/dist/components/card/Card.component.js +105 -0
- package/dist/components/checkbox/Checkbox.component.d.ts +10 -0
- package/dist/components/checkbox/Checkbox.component.d.ts.map +1 -0
- package/dist/components/checkbox/Checkbox.component.js +94 -0
- package/dist/components/chips/Chips.component.d.ts +22 -0
- package/dist/components/chips/Chips.component.d.ts.map +1 -0
- package/dist/components/chips/Chips.component.js +105 -0
- package/dist/components/circularprogressbar/CircularProgressBar.component.d.ts +13 -0
- package/dist/components/circularprogressbar/CircularProgressBar.component.d.ts.map +1 -0
- package/dist/components/circularprogressbar/CircularProgressBar.component.js +9 -0
- package/dist/components/circularprogressbar/CircularProgressBar.component.style.d.ts +11 -0
- package/dist/components/circularprogressbar/CircularProgressBar.component.style.d.ts.map +1 -0
- package/dist/components/circularprogressbar/CircularProgressBar.component.style.js +27 -0
- package/dist/components/cloudprogressbar/CloudProgressBar.component.d.ts +11 -0
- package/dist/components/cloudprogressbar/CloudProgressBar.component.d.ts.map +1 -0
- package/dist/components/cloudprogressbar/CloudProgressBar.component.js +38 -0
- package/dist/components/collapsiblepanel/CollapsiblePanel.component.d.ts +10 -0
- package/dist/components/collapsiblepanel/CollapsiblePanel.component.d.ts.map +1 -0
- package/dist/components/collapsiblepanel/CollapsiblePanel.component.js +44 -0
- package/dist/components/constants.d.ts +27 -0
- package/dist/components/constants.d.ts.map +1 -0
- package/dist/components/constants.js +47 -0
- package/dist/components/constrainedtext/Constrainedtext.component.d.ts +12 -0
- package/dist/components/constrainedtext/Constrainedtext.component.d.ts.map +1 -0
- package/dist/components/constrainedtext/Constrainedtext.component.js +46 -0
- package/dist/components/coreuithemeprovider/CoreUiThemeProvider.d.ts +9 -0
- package/dist/components/coreuithemeprovider/CoreUiThemeProvider.d.ts.map +1 -0
- package/dist/components/coreuithemeprovider/CoreUiThemeProvider.js +13 -0
- package/dist/components/date/FormattedDateTime.d.ts +11 -0
- package/dist/components/date/FormattedDateTime.d.ts.map +1 -0
- package/dist/components/date/FormattedDateTime.js +66 -0
- package/dist/components/date/FormattedDateTime.spec.d.ts +2 -0
- package/dist/components/date/FormattedDateTime.spec.d.ts.map +1 -0
- package/dist/components/date/FormattedDateTime.spec.js +140 -0
- package/dist/components/date/dateDiffer.d.ts +2 -0
- package/dist/components/date/dateDiffer.d.ts.map +1 -0
- package/dist/components/date/dateDiffer.js +7 -0
- package/dist/components/date/dateDiffer.spec.d.ts +2 -0
- package/dist/components/date/dateDiffer.spec.d.ts.map +1 -0
- package/dist/components/date/dateDiffer.spec.js +6 -0
- package/dist/components/dropdown/Dropdown.component.d.ts +20 -0
- package/dist/components/dropdown/Dropdown.component.d.ts.map +1 -0
- package/dist/components/dropdown/Dropdown.component.js +99 -0
- package/dist/components/dropzone/Dropzone.d.ts +16 -0
- package/dist/components/dropzone/Dropzone.d.ts.map +1 -0
- package/dist/components/dropzone/Dropzone.js +79 -0
- package/dist/components/emptystate/Emptystate.component.d.ts +13 -0
- package/dist/components/emptystate/Emptystate.component.d.ts.map +1 -0
- package/dist/components/emptystate/Emptystate.component.js +32 -0
- package/dist/components/emptytable/Emptytable.component.d.ts +8 -0
- package/dist/components/emptytable/Emptytable.component.d.ts.map +1 -0
- package/dist/components/emptytable/Emptytable.component.js +62 -0
- package/dist/components/error-pages/ErrorPage401.component.d.ts +9 -0
- package/dist/components/error-pages/ErrorPage401.component.d.ts.map +1 -0
- package/dist/components/error-pages/ErrorPage401.component.js +28 -0
- package/dist/components/error-pages/ErrorPage404.component.d.ts +8 -0
- package/dist/components/error-pages/ErrorPage404.component.d.ts.map +1 -0
- package/dist/components/error-pages/ErrorPage404.component.js +26 -0
- package/dist/components/error-pages/ErrorPage500.component.d.ts +13 -0
- package/dist/components/error-pages/ErrorPage500.component.d.ts.map +1 -0
- package/dist/components/error-pages/ErrorPage500.component.js +32 -0
- package/dist/components/error-pages/ErrorPageAuth.component.d.ts +8 -0
- package/dist/components/error-pages/ErrorPageAuth.component.d.ts.map +1 -0
- package/dist/components/error-pages/ErrorPageAuth.component.js +27 -0
- package/dist/components/error-pages/ErrorPageStyle.d.ts +7 -0
- package/dist/components/error-pages/ErrorPageStyle.d.ts.map +1 -0
- package/dist/components/error-pages/ErrorPageStyle.js +34 -0
- package/dist/components/form/Form.component.d.ts +61 -0
- package/dist/components/form/Form.component.d.ts.map +1 -0
- package/dist/components/form/Form.component.js +115 -0
- package/dist/components/globalhealthbar/GlobalHealthBar.component.d.ts +20 -0
- package/dist/components/globalhealthbar/GlobalHealthBar.component.d.ts.map +1 -0
- package/dist/components/globalhealthbar/GlobalHealthBar.component.js +169 -0
- package/dist/components/globalhealthbar/tooltip/index.d.ts +8 -0
- package/dist/components/globalhealthbar/tooltip/index.d.ts.map +1 -0
- package/dist/components/globalhealthbar/tooltip/index.js +55 -0
- package/dist/components/healthselectorv2/HealthSelector.component.d.ts +61 -0
- package/dist/components/healthselectorv2/HealthSelector.component.d.ts.map +1 -0
- package/dist/components/healthselectorv2/HealthSelector.component.js +70 -0
- package/dist/components/icon/Icon.component.d.ts +134 -0
- package/dist/components/icon/Icon.component.d.ts.map +1 -0
- package/dist/components/icon/Icon.component.js +209 -0
- package/dist/components/infomessage/InfoMessage.component.d.ts +9 -0
- package/dist/components/infomessage/InfoMessage.component.d.ts.map +1 -0
- package/dist/components/infomessage/InfoMessage.component.js +20 -0
- package/dist/components/infomessage/InfoMessageUtils.d.ts +8 -0
- package/dist/components/infomessage/InfoMessageUtils.d.ts.map +1 -0
- package/dist/components/infomessage/InfoMessageUtils.js +32 -0
- package/dist/components/input/Input.component.d.ts +24 -0
- package/dist/components/input/Input.component.d.ts.map +1 -0
- package/dist/components/input/Input.component.js +55 -0
- package/dist/components/input/Input.component.style.d.ts +9 -0
- package/dist/components/input/Input.component.style.d.ts.map +1 -0
- package/dist/components/input/Input.component.style.js +136 -0
- package/dist/components/inputlist/InputButtons.d.ts +20 -0
- package/dist/components/inputlist/InputButtons.d.ts.map +1 -0
- package/dist/components/inputlist/InputButtons.js +48 -0
- package/dist/components/inputlist/InputList.component.d.ts +27 -0
- package/dist/components/inputlist/InputList.component.d.ts.map +1 -0
- package/dist/components/inputlist/InputList.component.js +30 -0
- package/dist/components/inputv2/inputv2.d.ts +12 -0
- package/dist/components/inputv2/inputv2.d.ts.map +1 -0
- package/dist/components/inputv2/inputv2.js +80 -0
- package/dist/components/lateralnavbarlayout/LateralNavbarLayout.component.d.ts +9 -0
- package/dist/components/lateralnavbarlayout/LateralNavbarLayout.component.d.ts.map +1 -0
- package/dist/components/lateralnavbarlayout/LateralNavbarLayout.component.js +23 -0
- package/dist/components/layout/Layout.component.d.ts +12 -0
- package/dist/components/layout/Layout.component.d.ts.map +1 -0
- package/dist/components/layout/Layout.component.js +26 -0
- package/dist/components/layout/v2/AppContainer.d.ts +28 -0
- package/dist/components/layout/v2/AppContainer.d.ts.map +1 -0
- package/dist/components/layout/v2/AppContainer.js +63 -0
- package/dist/components/layout/v2/index.d.ts +6 -0
- package/dist/components/layout/v2/index.d.ts.map +1 -0
- package/dist/components/layout/v2/index.js +16 -0
- package/dist/components/layout/v2/panels.d.ts +17 -0
- package/dist/components/layout/v2/panels.d.ts.map +1 -0
- package/dist/components/layout/v2/panels.js +52 -0
- package/dist/components/linechart/LineChart.component.d.ts +22 -0
- package/dist/components/linechart/LineChart.component.d.ts.map +1 -0
- package/dist/components/linechart/LineChart.component.js +109 -0
- package/dist/components/linetemporalchart/ChartUtil.d.ts +40 -0
- package/dist/components/linetemporalchart/ChartUtil.d.ts.map +1 -0
- package/dist/components/linetemporalchart/ChartUtil.js +126 -0
- package/dist/components/linetemporalchart/LineTemporalChart.component.d.ts +43 -0
- package/dist/components/linetemporalchart/LineTemporalChart.component.d.ts.map +1 -0
- package/dist/components/linetemporalchart/LineTemporalChart.component.js +576 -0
- package/dist/components/linetemporalchart/MetricTimespanProvider.d.ts +8 -0
- package/dist/components/linetemporalchart/MetricTimespanProvider.d.ts.map +1 -0
- package/dist/components/linetemporalchart/MetricTimespanProvider.js +31 -0
- package/dist/components/linetemporalchart/tooltip/index.d.ts +30 -0
- package/dist/components/linetemporalchart/tooltip/index.d.ts.map +1 -0
- package/dist/components/linetemporalchart/tooltip/index.js +104 -0
- package/dist/components/loader/Loader.component.d.ts +11 -0
- package/dist/components/loader/Loader.component.d.ts.map +1 -0
- package/dist/components/loader/Loader.component.js +41 -0
- package/dist/components/modal/Modal.component.d.ts +13 -0
- package/dist/components/modal/Modal.component.d.ts.map +1 -0
- package/dist/components/modal/Modal.component.js +64 -0
- package/dist/components/multiselect/MultiSelect.component.d.ts +29 -0
- package/dist/components/multiselect/MultiSelect.component.d.ts.map +1 -0
- package/dist/components/multiselect/MultiSelect.component.js +73 -0
- package/dist/components/navbar/Navbar.component.d.ts +23 -0
- package/dist/components/navbar/Navbar.component.d.ts.map +1 -0
- package/dist/components/navbar/Navbar.component.js +151 -0
- package/dist/components/notifications/Notification.component.d.ts +13 -0
- package/dist/components/notifications/Notification.component.d.ts.map +1 -0
- package/dist/components/notifications/Notification.component.js +107 -0
- package/dist/components/notifications/Notifications.component.d.ts +15 -0
- package/dist/components/notifications/Notifications.component.d.ts.map +1 -0
- package/dist/components/notifications/Notifications.component.js +42 -0
- package/dist/components/prettybytes/PrettyBytes.component.d.ts +9 -0
- package/dist/components/prettybytes/PrettyBytes.component.d.ts.map +1 -0
- package/dist/components/prettybytes/PrettyBytes.component.js +24 -0
- package/dist/components/progressbar/ProgressBar.component.d.ts +18 -0
- package/dist/components/progressbar/ProgressBar.component.d.ts.map +1 -0
- package/dist/components/progressbar/ProgressBar.component.js +129 -0
- package/dist/components/scrollbarwrapper/ScrollbarWrapper.component.d.ts +7 -0
- package/dist/components/scrollbarwrapper/ScrollbarWrapper.component.d.ts.map +1 -0
- package/dist/components/scrollbarwrapper/ScrollbarWrapper.component.js +54 -0
- package/dist/components/searchinput/SearchInput.component.d.ts +12 -0
- package/dist/components/searchinput/SearchInput.component.d.ts.map +1 -0
- package/dist/components/searchinput/SearchInput.component.js +91 -0
- package/dist/components/select/Select.component.d.ts +15 -0
- package/dist/components/select/Select.component.d.ts.map +1 -0
- package/dist/components/select/Select.component.js +71 -0
- package/dist/components/selectv2/SelectStyle.d.ts +3 -0
- package/dist/components/selectv2/SelectStyle.d.ts.map +1 -0
- package/dist/components/selectv2/SelectStyle.js +238 -0
- package/dist/components/selectv2/Selectv2.component.d.ts +32 -0
- package/dist/components/selectv2/Selectv2.component.d.ts.map +1 -0
- package/dist/components/selectv2/Selectv2.component.js +267 -0
- package/dist/components/sidebar/Sidebar.component.d.ts +22 -0
- package/dist/components/sidebar/Sidebar.component.d.ts.map +1 -0
- package/dist/components/sidebar/Sidebar.component.js +136 -0
- package/dist/components/spacedbox/SpacedBox.d.ts +34 -0
- package/dist/components/spacedbox/SpacedBox.d.ts.map +1 -0
- package/dist/components/spacedbox/SpacedBox.js +64 -0
- package/dist/components/sparkline/SparkLine.component.d.ts +19 -0
- package/dist/components/sparkline/SparkLine.component.d.ts.map +1 -0
- package/dist/components/sparkline/SparkLine.component.js +148 -0
- package/dist/components/statuswrapper/Statuswrapper.component.d.ts +9 -0
- package/dist/components/statuswrapper/Statuswrapper.component.d.ts.map +1 -0
- package/dist/components/statuswrapper/Statuswrapper.component.js +44 -0
- package/dist/components/steppers/Stepper.component.d.ts +14 -0
- package/dist/components/steppers/Stepper.component.d.ts.map +1 -0
- package/dist/components/steppers/Stepper.component.js +33 -0
- package/dist/components/steppers/Steppers.component.d.ts +18 -0
- package/dist/components/steppers/Steppers.component.d.ts.map +1 -0
- package/dist/components/steppers/Steppers.component.js +96 -0
- package/dist/components/tablev2/MultiSelectableContent.d.ts +22 -0
- package/dist/components/tablev2/MultiSelectableContent.d.ts.map +1 -0
- package/dist/components/tablev2/MultiSelectableContent.js +129 -0
- package/dist/components/tablev2/Search.d.ts +29 -0
- package/dist/components/tablev2/Search.d.ts.map +1 -0
- package/dist/components/tablev2/Search.js +49 -0
- package/dist/components/tablev2/SearchWithQueryParams.d.ts +7 -0
- package/dist/components/tablev2/SearchWithQueryParams.d.ts.map +1 -0
- package/dist/components/tablev2/SearchWithQueryParams.js +24 -0
- package/dist/components/tablev2/SingleSelectableContent.d.ts +17 -0
- package/dist/components/tablev2/SingleSelectableContent.d.ts.map +1 -0
- package/dist/components/tablev2/SingleSelectableContent.js +75 -0
- package/dist/components/tablev2/TableCommon.d.ts +24 -0
- package/dist/components/tablev2/TableCommon.d.ts.map +1 -0
- package/dist/components/tablev2/TableCommon.js +35 -0
- package/dist/components/tablev2/TableUtils.d.ts +18 -0
- package/dist/components/tablev2/TableUtils.d.ts.map +1 -0
- package/dist/components/tablev2/TableUtils.js +32 -0
- package/dist/components/tablev2/Tablestyle.d.ts +36 -0
- package/dist/components/tablev2/Tablestyle.d.ts.map +1 -0
- package/dist/components/tablev2/Tablestyle.js +136 -0
- package/dist/components/tablev2/Tablev2.component.d.ts +71 -0
- package/dist/components/tablev2/Tablev2.component.d.ts.map +1 -0
- package/dist/components/tablev2/Tablev2.component.js +144 -0
- package/dist/components/tablev2/react-table-config.d.ts +28 -0
- package/dist/components/tablev2/react-table-config.d.ts.map +1 -0
- package/dist/components/tablev2/react-table-config.js +1 -0
- package/dist/components/tablev2/useCheckbox.d.ts +6 -0
- package/dist/components/tablev2/useCheckbox.d.ts.map +1 -0
- package/dist/components/tablev2/useCheckbox.js +40 -0
- package/dist/components/tablev2/useSyncedScroll.d.ts +7 -0
- package/dist/components/tablev2/useSyncedScroll.d.ts.map +1 -0
- package/dist/components/tablev2/useSyncedScroll.js +43 -0
- package/dist/components/tabsv2/ScrollButton.d.ts +8 -0
- package/dist/components/tabsv2/ScrollButton.d.ts.map +1 -0
- package/dist/components/tabsv2/ScrollButton.js +32 -0
- package/dist/components/tabsv2/StyledTabs.d.ts +18 -0
- package/dist/components/tabsv2/StyledTabs.d.ts.map +1 -0
- package/dist/components/tabsv2/StyledTabs.js +96 -0
- package/dist/components/tabsv2/Tab.d.ts +17 -0
- package/dist/components/tabsv2/Tab.d.ts.map +1 -0
- package/dist/components/tabsv2/Tab.js +10 -0
- package/dist/components/tabsv2/Tabsv2.component.d.ts +21 -0
- package/dist/components/tabsv2/Tabsv2.component.d.ts.map +1 -0
- package/dist/components/tabsv2/Tabsv2.component.js +89 -0
- package/dist/components/tabsv2/useScrollingTabs.d.ts +17 -0
- package/dist/components/tabsv2/useScrollingTabs.d.ts.map +1 -0
- package/dist/components/tabsv2/useScrollingTabs.js +261 -0
- package/dist/components/text/Text.component.d.ts +33 -0
- package/dist/components/text/Text.component.d.ts.map +1 -0
- package/dist/components/text/Text.component.js +154 -0
- package/dist/components/textarea/TextArea.component.d.ts +10 -0
- package/dist/components/textarea/TextArea.component.d.ts.map +1 -0
- package/dist/components/textarea/TextArea.component.js +60 -0
- package/dist/components/textbadge/TextBadge.component.d.ts +9 -0
- package/dist/components/textbadge/TextBadge.component.d.ts.map +1 -0
- package/dist/components/textbadge/TextBadge.component.js +19 -0
- package/dist/components/toast/DurationBasedProgressBar.d.ts +6 -0
- package/dist/components/toast/DurationBasedProgressBar.d.ts.map +1 -0
- package/dist/components/toast/DurationBasedProgressBar.js +24 -0
- package/dist/components/toast/Toast.component.d.ts +20 -0
- package/dist/components/toast/Toast.component.d.ts.map +1 -0
- package/dist/components/toast/Toast.component.js +106 -0
- package/dist/components/toast/ToastPositionHelpers.d.ts +4 -0
- package/dist/components/toast/ToastPositionHelpers.d.ts.map +1 -0
- package/dist/components/toast/ToastPositionHelpers.js +28 -0
- package/dist/components/toast/ToastProvider.d.ts +14 -0
- package/dist/components/toast/ToastProvider.d.ts.map +1 -0
- package/dist/components/toast/ToastProvider.js +18 -0
- package/dist/components/toast/useMutationsHandler.d.ts +40 -0
- package/dist/components/toast/useMutationsHandler.d.ts.map +1 -0
- package/dist/components/toast/useMutationsHandler.js +66 -0
- package/dist/components/toast/useToastParameters.d.ts +10 -0
- package/dist/components/toast/useToastParameters.d.ts.map +1 -0
- package/dist/components/toast/useToastParameters.js +39 -0
- package/dist/components/toggle/Toggle.component.d.ts +11 -0
- package/dist/components/toggle/Toggle.component.d.ts.map +1 -0
- package/dist/components/toggle/Toggle.component.js +80 -0
- package/dist/components/tooltip/Tooltip.component.d.ts +23 -0
- package/dist/components/tooltip/Tooltip.component.d.ts.map +1 -0
- package/dist/components/tooltip/Tooltip.component.js +82 -0
- package/dist/components/vegachart/VegaChart.component.d.ts +14 -0
- package/dist/components/vegachart/VegaChart.component.d.ts.map +1 -0
- package/dist/components/vegachart/VegaChart.component.js +120 -0
- package/dist/components/vegachartv2/SyncedCursorCharts.d.ts +13 -0
- package/dist/components/vegachartv2/SyncedCursorCharts.d.ts.map +1 -0
- package/dist/components/vegachartv2/SyncedCursorCharts.js +17 -0
- package/dist/components/vegachartv2/VegaChartV2.component.d.ts +16 -0
- package/dist/components/vegachartv2/VegaChartV2.component.d.ts.map +1 -0
- package/dist/components/vegachartv2/VegaChartV2.component.js +216 -0
- package/dist/hooks.d.ts +2 -0
- package/dist/hooks.d.ts.map +1 -0
- package/dist/hooks.js +19 -0
- package/dist/icons/branding.d.ts +4 -0
- package/dist/icons/branding.d.ts.map +1 -0
- package/dist/icons/branding.js +3 -0
- package/dist/icons/scality-loading.d.ts +4 -0
- package/dist/icons/scality-loading.d.ts.map +1 -0
- package/dist/icons/scality-loading.js +3 -0
- package/dist/index.css +25 -0
- package/dist/index.d.ts +65 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +64 -0
- package/dist/next.d.ts +15 -0
- package/dist/next.d.ts.map +1 -0
- package/dist/next.js +14 -0
- package/dist/organisms/attachments/AttachmentConfirmationModal.d.ts +22 -0
- package/dist/organisms/attachments/AttachmentConfirmationModal.d.ts.map +1 -0
- package/dist/organisms/attachments/AttachmentConfirmationModal.js +142 -0
- package/dist/organisms/attachments/AttachmentTable.d.ts +37 -0
- package/dist/organisms/attachments/AttachmentTable.d.ts.map +1 -0
- package/dist/organisms/attachments/AttachmentTable.js +375 -0
- package/dist/organisms/attachments/AttachmentTypes.d.ts +15 -0
- package/dist/organisms/attachments/AttachmentTypes.d.ts.map +1 -0
- package/dist/organisms/attachments/AttachmentTypes.js +5 -0
- package/dist/spacing.d.ts +44 -0
- package/dist/spacing.d.ts.map +1 -0
- package/dist/spacing.js +60 -0
- package/dist/style/fonts/Lato-Bold.woff +0 -0
- package/dist/style/fonts/Lato-Bold.woff2 +0 -0
- package/dist/style/fonts/Lato-Regular.woff +0 -0
- package/dist/style/fonts/Lato-Regular.woff2 +0 -0
- package/dist/style/theme.d.ts +160 -0
- package/dist/style/theme.d.ts.map +1 -0
- package/dist/style/theme.js +234 -0
- package/dist/testUtils.d.ts +9 -0
- package/dist/testUtils.d.ts.map +1 -0
- package/dist/testUtils.js +11 -0
- package/dist/utils.d.ts +9 -0
- package/dist/utils.d.ts.map +1 -0
- package/dist/utils.js +46 -0
- package/global-setup.js +3 -0
- package/jest.config.js +8 -0
- package/package.json +161 -0
- package/plop-templates/component.hbs +18 -0
- package/plop-templates/component.test.hbs +10 -0
- package/plop-templates/stories.hbs +18 -0
- package/plopfile.js +38 -0
- package/setupTests.js +3 -0
- package/src/lib/components/IconHelper.tsx +23 -0
- package/src/lib/components/areachart/AreaChart.component.tsx +49 -0
- package/src/lib/components/banner/Banner.component.tsx +59 -0
- package/src/lib/components/barchart/BarChart.component.tsx +46 -0
- package/src/lib/components/box/Box.ts +57 -0
- package/src/lib/components/breadcrumb/Breadcrumb.component.tsx +101 -0
- package/src/lib/components/button/Button.component.tsx +312 -0
- package/src/lib/components/buttonv2/Buttonv2.component.tsx +270 -0
- package/src/lib/components/buttonv2/CopyButton.component.tsx +89 -0
- package/src/lib/components/card/Card.component.tsx +196 -0
- package/src/lib/components/checkbox/Checkbox.component.tsx +131 -0
- package/src/lib/components/chips/Chips.component.tsx +169 -0
- package/src/lib/components/circularprogressbar/CircularProgressBar.component.style.ts +31 -0
- package/src/lib/components/circularprogressbar/CircularProgressBar.component.tsx +58 -0
- package/src/lib/components/cloudprogressbar/CloudProgressBar.component.tsx +105 -0
- package/src/lib/components/collapsiblepanel/CollapsiblePanel.component.tsx +77 -0
- package/src/lib/components/constants.ts +67 -0
- package/src/lib/components/constrainedtext/Constrainedtext.component.tsx +93 -0
- package/src/lib/components/coreuithemeprovider/CoreUiThemeProvider.tsx +21 -0
- package/src/lib/components/date/FormattedDateTime.spec.tsx +217 -0
- package/src/lib/components/date/FormattedDateTime.tsx +150 -0
- package/src/lib/components/date/dateDiffer.spec.ts +13 -0
- package/src/lib/components/date/dateDiffer.ts +12 -0
- package/src/lib/components/dropdown/Dropdown.component.tsx +184 -0
- package/src/lib/components/dropzone/Dropzone.tsx +181 -0
- package/src/lib/components/emptystate/Emptystate.component.tsx +66 -0
- package/src/lib/components/emptytable/Emptytable.component.tsx +79 -0
- package/src/lib/components/error-pages/ErrorPage401.component.tsx +77 -0
- package/src/lib/components/error-pages/ErrorPage404.component.tsx +64 -0
- package/src/lib/components/error-pages/ErrorPage500.component.tsx +88 -0
- package/src/lib/components/error-pages/ErrorPageAuth.component.tsx +70 -0
- package/src/lib/components/error-pages/ErrorPageStyle.ts +34 -0
- package/src/lib/components/form/Form.component.tsx +416 -0
- package/src/lib/components/globalhealthbar/GlobalHealthBar.component.tsx +201 -0
- package/src/lib/components/globalhealthbar/tooltip/index.ts +72 -0
- package/src/lib/components/healthselectorv2/HealthSelector.component.test.tsx +62 -0
- package/src/lib/components/healthselectorv2/HealthSelector.component.tsx +103 -0
- package/src/lib/components/icon/Icon.component.tsx +280 -0
- package/src/lib/components/infomessage/InfoMessage.component.tsx +47 -0
- package/src/lib/components/infomessage/InfoMessageUtils.test.tsx +110 -0
- package/src/lib/components/infomessage/InfoMessageUtils.ts +39 -0
- package/src/lib/components/input/Input.component.style.ts +141 -0
- package/src/lib/components/input/Input.component.tsx +174 -0
- package/src/lib/components/inputlist/InputButtons.tsx +111 -0
- package/src/lib/components/inputlist/InputList.component.tsx +98 -0
- package/src/lib/components/inputlist/InputList.test.tsx +102 -0
- package/src/lib/components/inputv2/inputv2.tsx +155 -0
- package/src/lib/components/lateralnavbarlayout/LateralNavbarLayout.component.tsx +38 -0
- package/src/lib/components/layout/Layout.component.tsx +46 -0
- package/src/lib/components/layout/v2/AppContainer.tsx +160 -0
- package/src/lib/components/layout/v2/index.tsx +30 -0
- package/src/lib/components/layout/v2/panels.tsx +105 -0
- package/src/lib/components/linechart/LineChart.component.tsx +152 -0
- package/src/lib/components/linetemporalchart/ChartUtil.test.ts +261 -0
- package/src/lib/components/linetemporalchart/ChartUtil.ts +187 -0
- package/src/lib/components/linetemporalchart/LineTemporalChart.component.tsx +797 -0
- package/src/lib/components/linetemporalchart/MetricTimespanProvider.tsx +50 -0
- package/src/lib/components/linetemporalchart/tooltip/index.ts +178 -0
- package/src/lib/components/loader/Loader.component.tsx +71 -0
- package/src/lib/components/modal/Modal.component.tsx +121 -0
- package/src/lib/components/multiselect/MultiSelect.component.tsx +158 -0
- package/src/lib/components/navbar/Navbar.component.tsx +238 -0
- package/src/lib/components/notifications/Notification.component.tsx +160 -0
- package/src/lib/components/notifications/Notifications.component.tsx +73 -0
- package/src/lib/components/prettybytes/PrettyBytes.component.tsx +39 -0
- package/src/lib/components/prettybytes/prettybytes.test.tsx +217 -0
- package/src/lib/components/progressbar/ProgressBar.component.tsx +217 -0
- package/src/lib/components/scrollbarwrapper/ScrollbarWrapper.component.tsx +66 -0
- package/src/lib/components/searchinput/SearchInput.component.tsx +146 -0
- package/src/lib/components/select/Select.component.tsx +98 -0
- package/src/lib/components/selectv2/SelectStyle.ts +267 -0
- package/src/lib/components/selectv2/Selectv2.component.tsx +487 -0
- package/src/lib/components/selectv2/selectv2.test.tsx +277 -0
- package/src/lib/components/sidebar/Sidebar.component.tsx +217 -0
- package/src/lib/components/spacedbox/SpacedBox.ts +116 -0
- package/src/lib/components/sparkline/SparkLine.component.tsx +176 -0
- package/src/lib/components/statuswrapper/Statuswrapper.component.tsx +66 -0
- package/src/lib/components/steppers/Stepper.component.d.ts +70 -0
- package/src/lib/components/steppers/Stepper.component.tsx +62 -0
- package/src/lib/components/steppers/Steppers.component.tsx +157 -0
- package/src/lib/components/tablev2/MultiSelectableContent.tsx +318 -0
- package/src/lib/components/tablev2/Search.tsx +112 -0
- package/src/lib/components/tablev2/SearchWithQueryParams.tsx +38 -0
- package/src/lib/components/tablev2/SingleSelectableContent.tsx +222 -0
- package/src/lib/components/tablev2/TableCommon.tsx +102 -0
- package/src/lib/components/tablev2/TableUtils.test.ts +17 -0
- package/src/lib/components/tablev2/TableUtils.ts +60 -0
- package/src/lib/components/tablev2/Tablestyle.tsx +184 -0
- package/src/lib/components/tablev2/Tablev2.component.tsx +316 -0
- package/src/lib/components/tablev2/Tablev2.test.tsx +136 -0
- package/src/lib/components/tablev2/react-table-config.ts +90 -0
- package/src/lib/components/tablev2/useCheckbox.tsx +62 -0
- package/src/lib/components/tablev2/useSyncedScroll.ts +64 -0
- package/src/lib/components/tabsv2/ScrollButton.tsx +39 -0
- package/src/lib/components/tabsv2/StyledTabs.ts +108 -0
- package/src/lib/components/tabsv2/Tab.ts +27 -0
- package/src/lib/components/tabsv2/Tabsv2.component.tsx +247 -0
- package/src/lib/components/tabsv2/useScrollingTabs.ts +335 -0
- package/src/lib/components/text/Text.component.tsx +194 -0
- package/src/lib/components/textarea/TextArea.component.tsx +106 -0
- package/src/lib/components/textbadge/TextBadge.component.tsx +44 -0
- package/src/lib/components/toast/DurationBasedProgressBar.tsx +45 -0
- package/src/lib/components/toast/Toast.component.tsx +181 -0
- package/src/lib/components/toast/ToastPositionHelpers.ts +38 -0
- package/src/lib/components/toast/ToastProvider.tsx +40 -0
- package/src/lib/components/toast/useMutationsHandler.test.tsx +238 -0
- package/src/lib/components/toast/useMutationsHandler.ts +172 -0
- package/src/lib/components/toast/useToastParameters.ts +59 -0
- package/src/lib/components/toggle/Toggle.component.tsx +128 -0
- package/src/lib/components/tooltip/Tooltip.component.tsx +136 -0
- package/src/lib/components/vegachart/VegaChart.component.tsx +146 -0
- package/src/lib/components/vegachartv2/SyncedCursorCharts.tsx +30 -0
- package/src/lib/components/vegachartv2/VegaChartV2.component.tsx +279 -0
- package/src/lib/hooks.ts +26 -0
- package/src/lib/icons/branding.tsx +55 -0
- package/src/lib/icons/scality-loading.tsx +118 -0
- package/src/lib/index.css +25 -0
- package/src/lib/index.ts +75 -0
- package/src/lib/next.ts +17 -0
- package/src/lib/organisms/attachments/AttachmentConfirmationModal.tsx +311 -0
- package/src/lib/organisms/attachments/AttachmentTable.tsx +728 -0
- package/src/lib/organisms/attachments/AttachmentTypes.ts +16 -0
- package/src/lib/spacing.tsx +108 -0
- package/src/lib/style/fonts/Lato-Bold.woff +0 -0
- package/src/lib/style/fonts/Lato-Bold.woff2 +0 -0
- package/src/lib/style/fonts/Lato-Regular.woff +0 -0
- package/src/lib/style/fonts/Lato-Regular.woff2 +0 -0
- package/src/lib/style/theme.ts +270 -0
- package/src/lib/testUtils.tsx +18 -0
- package/src/lib/utils.ts +57 -0
- package/stories/Button/button.guideline.mdx +199 -0
- package/stories/Button/button.stories.tsx +299 -0
- package/stories/Icon.mdx +31 -0
- package/stories/InfoMessage/infomessage.guideline.mdx +32 -0
- package/stories/InfoMessage/infomessage.stories.tsx +124 -0
- package/stories/Introduction.mdx +32 -0
- package/stories/Select/select.guideline.mdx +91 -0
- package/stories/Select/selectv2.stories.tsx +169 -0
- package/stories/areachart.stories.tsx +121 -0
- package/stories/banner.stories.tsx +75 -0
- package/stories/barchart.stories.tsx +148 -0
- package/stories/box.stories.tsx +114 -0
- package/stories/breadcrumb.stories.tsx +42 -0
- package/stories/card.stories.tsx +195 -0
- package/stories/checkbox.stories.tsx +63 -0
- package/stories/chips.stories.tsx +107 -0
- package/stories/circularprogressbar.stories.tsx +136 -0
- package/stories/cloudprogressbar.stories.tsx +93 -0
- package/stories/collapsiblepanel.stories.tsx +57 -0
- package/stories/color.mdx +43 -0
- package/stories/common.tsx +39 -0
- package/stories/constrainedtext.stories.tsx +51 -0
- package/stories/controls.ts +59 -0
- package/stories/copybutton.stories.tsx +58 -0
- package/stories/data/areachart.ts +122 -0
- package/stories/data/barchart.ts +1497 -0
- package/stories/data/linechart.ts +1516 -0
- package/stories/data/list.ts +802 -0
- package/stories/data/sparklinechart.ts +164 -0
- package/stories/designprinciples.mdx +29 -0
- package/stories/dropdown.stories.tsx +146 -0
- package/stories/dropzone.stories.tsx +49 -0
- package/stories/emptystate.stories.tsx +22 -0
- package/stories/errorpage401.stories.tsx +25 -0
- package/stories/errorpage404.stories.tsx +24 -0
- package/stories/errorpage500.stories.tsx +44 -0
- package/stories/errorpageauth.stories.tsx +31 -0
- package/stories/form.stories.tsx +255 -0
- package/stories/format.mdx +44 -0
- package/stories/formattedate.stories.tsx +58 -0
- package/stories/globalhealthbar.stories.tsx +171 -0
- package/stories/guideline/chart-guideline.mdx +63 -0
- package/stories/guideline/docs-template.mdx +43 -0
- package/stories/guideline/mdxExampleComponents.tsx +57 -0
- package/stories/healthselectorv2.stories.tsx +74 -0
- package/stories/icon.stories.tsx +146 -0
- package/stories/icons.mdx +108 -0
- package/stories/input.stories.tsx +228 -0
- package/stories/inputlist.stories.tsx +57 -0
- package/stories/lateralnavbarlayout.stories.tsx +127 -0
- package/stories/layout.stories.tsx +378 -0
- package/stories/linechart.stories.tsx +319 -0
- package/stories/linecharttemporal.stories.tsx +88 -0
- package/stories/loader.stories.tsx +49 -0
- package/stories/modal.mdx +17 -0
- package/stories/modal.stories.tsx +177 -0
- package/stories/multiselect.stories.tsx +126 -0
- package/stories/navbar.stories.tsx +156 -0
- package/stories/notifications.stories.tsx +199 -0
- package/stories/pictures/icon-design-system.png +0 -0
- package/stories/prettybytes.stories.tsx +51 -0
- package/stories/progressbar.stories.tsx +174 -0
- package/stories/scrollbar.stories.tsx +76 -0
- package/stories/searchinput.stories.tsx +86 -0
- package/stories/select.stories.tsx +52 -0
- package/stories/selectinput.stories.tsx +73 -0
- package/stories/sidebar.stories.tsx +95 -0
- package/stories/spacing.stories.mdx +50 -0
- package/stories/spacing.stories.tsx +116 -0
- package/stories/sparkline.stories.tsx +85 -0
- package/stories/statuswrapper.stories.tsx +108 -0
- package/stories/stepper.stories.tsx +124 -0
- package/stories/steppers.stories.tsx +115 -0
- package/stories/tablev2.stories.tsx +539 -0
- package/stories/tabsv2.stories.tsx +168 -0
- package/stories/text.stories.tsx +138 -0
- package/stories/textarea.stories.tsx +69 -0
- package/stories/textbadge.stories.tsx +27 -0
- package/stories/toast.stories.tsx +144 -0
- package/stories/toggle.stories.tsx +45 -0
- package/stories/tooltip.stories.tsx +170 -0
- package/stories/typography.mdx +28 -0
- package/stories/vegachart.stories.tsx +98 -0
- package/tsconfig.json +18 -0
- package/types/styled.d.ts +6 -0
|
@@ -0,0 +1,1516 @@
|
|
|
1
|
+
export const data = [
|
|
2
|
+
{
|
|
3
|
+
time: '2019-10-01 00:00:00',
|
|
4
|
+
total_space: 210,
|
|
5
|
+
used_space: 10,
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
time: '2019-10-01 00:15:00',
|
|
9
|
+
total_space: 89,
|
|
10
|
+
used_space: 10,
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
time: '2019-10-01 00:30:00',
|
|
14
|
+
total_space: 90,
|
|
15
|
+
used_space: 12,
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
time: '2019-10-01 00:45:00',
|
|
19
|
+
total_space: 87,
|
|
20
|
+
used_space: 30,
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
time: '2019-10-01 01:00:00',
|
|
24
|
+
total_space: 89,
|
|
25
|
+
used_space: 47,
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
time: '2019-10-01 01:15:00',
|
|
29
|
+
total_space: 99,
|
|
30
|
+
used_space: 22,
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
time: '2019-10-01 01:30:00',
|
|
34
|
+
total_space: 85,
|
|
35
|
+
used_space: 15,
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
time: '2019-10-01 01:45:00',
|
|
39
|
+
total_space: 93,
|
|
40
|
+
used_space: 22,
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
time: '2019-10-01 02:00:00',
|
|
44
|
+
total_space: 98,
|
|
45
|
+
used_space: 19,
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
time: '2019-10-01 02:15:00',
|
|
49
|
+
total_space: 97,
|
|
50
|
+
used_space: 43,
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
time: '2019-10-01 02:30:00',
|
|
54
|
+
total_space: 95,
|
|
55
|
+
used_space: 45,
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
time: '2019-10-01 02:45:00',
|
|
59
|
+
total_space: 98,
|
|
60
|
+
used_space: 23,
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
time: '2019-10-01 03:00:00',
|
|
64
|
+
total_space: 93,
|
|
65
|
+
used_space: 21,
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
time: '2019-10-01 03:15:00',
|
|
69
|
+
total_space: 88,
|
|
70
|
+
used_space: 34,
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
time: '2019-10-01 03:30:00',
|
|
74
|
+
total_space: 94,
|
|
75
|
+
used_space: 44,
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
time: '2019-10-01 03:45:00',
|
|
79
|
+
total_space: 95,
|
|
80
|
+
used_space: 18,
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
time: '2019-10-01 04:00:00',
|
|
84
|
+
total_space: 85,
|
|
85
|
+
used_space: 19,
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
time: '2019-10-01 04:15:00',
|
|
89
|
+
total_space: 82,
|
|
90
|
+
used_space: 20,
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
time: '2019-10-01 04:30:00',
|
|
94
|
+
total_space: 90,
|
|
95
|
+
used_space: 24,
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
time: '2019-10-01 04:45:00',
|
|
99
|
+
total_space: 92,
|
|
100
|
+
used_space: 13,
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
time: '2019-10-01 05:00:00',
|
|
104
|
+
total_space: 93,
|
|
105
|
+
used_space: 47,
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
time: '2019-10-01 05:15:00',
|
|
109
|
+
total_space: 82,
|
|
110
|
+
used_space: 41,
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
time: '2019-10-01 05:30:00',
|
|
114
|
+
total_space: 82,
|
|
115
|
+
used_space: 39,
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
time: '2019-10-01 05:45:00',
|
|
119
|
+
total_space: 91,
|
|
120
|
+
used_space: 39,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
time: '2019-10-01 06:00:00',
|
|
124
|
+
total_space: 219,
|
|
125
|
+
used_space: 44,
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
time: '2019-10-01 06:15:00',
|
|
129
|
+
total_space: 91,
|
|
130
|
+
used_space: 40,
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
time: '2019-10-01 06:30:00',
|
|
134
|
+
total_space: 83,
|
|
135
|
+
used_space: 46,
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
time: '2019-10-01 06:45:00',
|
|
139
|
+
total_space: 89,
|
|
140
|
+
used_space: 17,
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
time: '2019-10-01 07:00:00',
|
|
144
|
+
total_space: 80,
|
|
145
|
+
used_space: 22,
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
time: '2019-10-01 07:15:00',
|
|
149
|
+
total_space: 299,
|
|
150
|
+
used_space: 48,
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
time: '2019-10-01 07:30:00',
|
|
154
|
+
total_space: 89,
|
|
155
|
+
used_space: 48,
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
time: '2019-10-01 07:45:00',
|
|
159
|
+
total_space: 99,
|
|
160
|
+
used_space: 10,
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
time: '2019-10-01 08:00:00',
|
|
164
|
+
total_space: 99,
|
|
165
|
+
used_space: 27,
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
time: '2019-10-01 08:15:00',
|
|
169
|
+
total_space: 200,
|
|
170
|
+
used_space: 22,
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
time: '2019-10-01 08:30:00',
|
|
174
|
+
total_space: 100,
|
|
175
|
+
used_space: 31,
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
time: '2019-10-01 08:45:00',
|
|
179
|
+
total_space: 86,
|
|
180
|
+
used_space: 15,
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
time: '2019-10-01 09:00:00',
|
|
184
|
+
total_space: 80,
|
|
185
|
+
used_space: 31,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
time: '2019-10-01 09:15:00',
|
|
189
|
+
total_space: 99,
|
|
190
|
+
used_space: 37,
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
time: '2019-10-01 09:30:00',
|
|
194
|
+
total_space: 89,
|
|
195
|
+
used_space: 18,
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
time: '2019-10-01 09:45:00',
|
|
199
|
+
total_space: 100,
|
|
200
|
+
used_space: 10,
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
time: '2019-10-01 10:00:00',
|
|
204
|
+
total_space: 95,
|
|
205
|
+
used_space: 32,
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
time: '2019-10-01 10:15:00',
|
|
209
|
+
total_space: 88,
|
|
210
|
+
used_space: 40,
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
time: '2019-10-01 10:30:00',
|
|
214
|
+
total_space: 82,
|
|
215
|
+
used_space: 13,
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
time: '2019-10-01 10:45:00',
|
|
219
|
+
total_space: 97,
|
|
220
|
+
used_space: 39,
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
time: '2019-10-01 11:00:00',
|
|
224
|
+
total_space: 95,
|
|
225
|
+
used_space: 33,
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
time: '2019-10-01 11:15:00',
|
|
229
|
+
total_space: 96,
|
|
230
|
+
used_space: 28,
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
time: '2019-10-01 11:30:00',
|
|
234
|
+
total_space: 91,
|
|
235
|
+
used_space: 36,
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
time: '2019-10-01 11:45:00',
|
|
239
|
+
total_space: 92,
|
|
240
|
+
used_space: 38,
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
time: '2019-10-01 12:00:00',
|
|
244
|
+
total_space: 85,
|
|
245
|
+
used_space: 18,
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
time: '2019-10-01 12:15:00',
|
|
249
|
+
total_space: 100,
|
|
250
|
+
used_space: 34,
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
time: '2019-10-01 12:30:00',
|
|
254
|
+
total_space: 86,
|
|
255
|
+
used_space: 30,
|
|
256
|
+
},
|
|
257
|
+
];
|
|
258
|
+
export const data_graph_with_axis = [
|
|
259
|
+
{
|
|
260
|
+
time: '2019-10-01 00:00:00',
|
|
261
|
+
resquest_method: 'Get',
|
|
262
|
+
Latency: 13,
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
time: '2019-10-01 00:00:00',
|
|
266
|
+
resquest_method: 'Put',
|
|
267
|
+
Latency: 14,
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
time: '2019-10-01 00:00:00',
|
|
271
|
+
resquest_method: 'Delete',
|
|
272
|
+
Latency: 133,
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
time: '2019-10-01 00:00:00',
|
|
276
|
+
resquest_method: 'List',
|
|
277
|
+
Latency: 55,
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
time: '2019-10-01 00:15:00',
|
|
281
|
+
resquest_method: 'Get',
|
|
282
|
+
Latency: 43,
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
time: '2019-10-01 00:15:00',
|
|
286
|
+
resquest_method: 'Put',
|
|
287
|
+
Latency: 99,
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
time: '2019-10-01 00:15:00',
|
|
291
|
+
resquest_method: 'Delete',
|
|
292
|
+
Latency: 34,
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
time: '2019-10-01 00:15:00',
|
|
296
|
+
resquest_method: 'List',
|
|
297
|
+
Latency: 44,
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
time: '2019-10-01 00:30:00',
|
|
301
|
+
resquest_method: 'Get',
|
|
302
|
+
Latency: 23,
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
time: '2019-10-01 00:30:00',
|
|
306
|
+
resquest_method: 'Put',
|
|
307
|
+
Latency: 55,
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
time: '2019-10-01 00:30:00',
|
|
311
|
+
resquest_method: 'Delete',
|
|
312
|
+
Latency: 53,
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
time: '2019-10-01 00:30:00',
|
|
316
|
+
resquest_method: 'List',
|
|
317
|
+
Latency: 80,
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
time: '2019-10-01 00:45:00',
|
|
321
|
+
resquest_method: 'Get',
|
|
322
|
+
Latency: 33,
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
time: '2019-10-01 00:45:00',
|
|
326
|
+
resquest_method: 'Put',
|
|
327
|
+
Latency: 19,
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
time: '2019-10-01 00:45:00',
|
|
331
|
+
resquest_method: 'Delete',
|
|
332
|
+
Latency: 22,
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
time: '2019-10-01 00:45:00',
|
|
336
|
+
resquest_method: 'List',
|
|
337
|
+
Latency: 99,
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
time: '2019-10-01 01:00:00',
|
|
341
|
+
resquest_method: 'Get',
|
|
342
|
+
Latency: 99,
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
time: '2019-10-01 01:00:00',
|
|
346
|
+
resquest_method: 'Put',
|
|
347
|
+
Latency: 25,
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
time: '2019-10-01 01:00:00',
|
|
351
|
+
resquest_method: 'Delete',
|
|
352
|
+
Latency: 45,
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
time: '2019-10-01 01:00:00',
|
|
356
|
+
resquest_method: 'List',
|
|
357
|
+
Latency: 99,
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
time: '2019-10-01 01:15:00',
|
|
361
|
+
resquest_method: 'Get',
|
|
362
|
+
Latency: 54,
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
time: '2019-10-01 01:15:00',
|
|
366
|
+
resquest_method: 'Put',
|
|
367
|
+
Latency: 14,
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
time: '2019-10-01 01:15:00',
|
|
371
|
+
resquest_method: 'Delete',
|
|
372
|
+
Latency: 99,
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
time: '2019-10-01 01:15:00',
|
|
376
|
+
resquest_method: 'List',
|
|
377
|
+
Latency: 33,
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
time: '2019-10-01 01:30:00',
|
|
381
|
+
resquest_method: 'Get',
|
|
382
|
+
Latency: 11,
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
time: '2019-10-01 01:30:00',
|
|
386
|
+
resquest_method: 'Put',
|
|
387
|
+
Latency: 99,
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
time: '2019-10-01 01:30:00',
|
|
391
|
+
resquest_method: 'Delete',
|
|
392
|
+
Latency: 276,
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
time: '2019-10-01 01:30:00',
|
|
396
|
+
resquest_method: 'List',
|
|
397
|
+
Latency: 80,
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
time: '2019-10-01 01:45:00',
|
|
401
|
+
resquest_method: 'Get',
|
|
402
|
+
Latency: 23,
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
time: '2019-10-01 01:45:00',
|
|
406
|
+
resquest_method: 'Put',
|
|
407
|
+
Latency: 198,
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
time: '2019-10-01 01:45:00',
|
|
411
|
+
resquest_method: 'Delete',
|
|
412
|
+
Latency: 53,
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
time: '2019-10-01 01:45:00',
|
|
416
|
+
resquest_method: 'List',
|
|
417
|
+
Latency: 99,
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
time: '2019-10-01 02:00:00',
|
|
421
|
+
resquest_method: 'Get',
|
|
422
|
+
Latency: 33,
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
time: '2019-10-01 02:00:00',
|
|
426
|
+
resquest_method: 'Put',
|
|
427
|
+
Latency: 98,
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
time: '2019-10-01 02:00:00',
|
|
431
|
+
resquest_method: 'Delete',
|
|
432
|
+
Latency: 153,
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
time: '2019-10-01 02:00:00',
|
|
436
|
+
resquest_method: 'List',
|
|
437
|
+
Latency: 44,
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
time: '2019-10-01 02:15:00',
|
|
441
|
+
resquest_method: 'Get',
|
|
442
|
+
Latency: 133,
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
time: '2019-10-01 02:15:00',
|
|
446
|
+
resquest_method: 'Put',
|
|
447
|
+
Latency: 98,
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
time: '2019-10-01 02:15:00',
|
|
451
|
+
resquest_method: 'Delete',
|
|
452
|
+
Latency: 33,
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
time: '2019-10-01 02:15:00',
|
|
456
|
+
resquest_method: 'List',
|
|
457
|
+
Latency: 90,
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
time: '2019-10-01 02:30:00',
|
|
461
|
+
resquest_method: 'Get',
|
|
462
|
+
Latency: 55,
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
time: '2019-10-01 02:30:00',
|
|
466
|
+
resquest_method: 'Put',
|
|
467
|
+
Latency: 13,
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
time: '2019-10-01 02:30:00',
|
|
471
|
+
resquest_method: 'Delete',
|
|
472
|
+
Latency: 90,
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
time: '2019-10-01 02:30:00',
|
|
476
|
+
resquest_method: 'List',
|
|
477
|
+
Latency: 33,
|
|
478
|
+
},
|
|
479
|
+
];
|
|
480
|
+
export const forecast_data = [
|
|
481
|
+
{
|
|
482
|
+
time: '-3m',
|
|
483
|
+
capacity: 5,
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
time: 'Now',
|
|
487
|
+
capacity: 7,
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
time: '+3m',
|
|
491
|
+
capacity: 14,
|
|
492
|
+
},
|
|
493
|
+
];
|
|
494
|
+
export const in_out_data = [
|
|
495
|
+
{
|
|
496
|
+
date: '2021-01-20T18:29:33.000Z',
|
|
497
|
+
type: 'in',
|
|
498
|
+
value: 3,
|
|
499
|
+
symbol: 'A',
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
date: '2021-01-20T18:41:33.000Z',
|
|
503
|
+
type: 'in',
|
|
504
|
+
value: 3,
|
|
505
|
+
symbol: 'A',
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
date: '2021-01-20T18:53:33.000Z',
|
|
509
|
+
type: 'in',
|
|
510
|
+
value: 3,
|
|
511
|
+
symbol: 'A',
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
date: '2021-01-20T18:29:33.000Z',
|
|
515
|
+
type: 'out',
|
|
516
|
+
value: 13,
|
|
517
|
+
symbol: 'A',
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
date: '2021-01-20T18:41:33.000Z',
|
|
521
|
+
type: 'out',
|
|
522
|
+
value: 9,
|
|
523
|
+
symbol: 'A',
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
date: '2021-01-20T18:53:33.000Z',
|
|
527
|
+
type: 'out',
|
|
528
|
+
value: 9,
|
|
529
|
+
symbol: 'A',
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
date: '2021-01-20T18:29:33.000Z',
|
|
533
|
+
type: 'avgIn',
|
|
534
|
+
value: 13,
|
|
535
|
+
symbol: 'Cluster avg',
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
timestamp: '2021-01-20T18:41:33.000Z',
|
|
539
|
+
type: 'avgIn',
|
|
540
|
+
value: 13,
|
|
541
|
+
symbol: 'Cluster avg',
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
timestamp: '2021-01-20T18:53:33.000Z',
|
|
545
|
+
type: 'avgIn',
|
|
546
|
+
value: 13,
|
|
547
|
+
symbol: 'Cluster avg',
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
timestamp: '2021-01-20T18:29:33.000Z',
|
|
551
|
+
type: 'avgOut',
|
|
552
|
+
value: 23,
|
|
553
|
+
symbol: 'Cluster avg',
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
timestamp: '2021-01-20T18:41:33.000Z',
|
|
557
|
+
type: 'avgOut',
|
|
558
|
+
value: 29,
|
|
559
|
+
symbol: 'Cluster avg',
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
timestamp: '2021-01-20T18:53:33.000Z',
|
|
563
|
+
type: 'avgOut',
|
|
564
|
+
value: 29,
|
|
565
|
+
symbol: 'Cluster avg',
|
|
566
|
+
},
|
|
567
|
+
];
|
|
568
|
+
// used by display linechart v2 in storybook
|
|
569
|
+
export const dataLineChartV2 = [
|
|
570
|
+
{
|
|
571
|
+
resource: 'bootstrap',
|
|
572
|
+
data: [
|
|
573
|
+
[1629306229, '14.483333333337214'],
|
|
574
|
+
[1629306949, '7.754166666685109'],
|
|
575
|
+
[1629307669, '6.237500000012602'],
|
|
576
|
+
[1629308389, '9.287500000015527'],
|
|
577
|
+
[1629309109, '15.904166666659876'],
|
|
578
|
+
[1629309829, '9.116666666644349'],
|
|
579
|
+
[1629310549, '16.516666666648234'],
|
|
580
|
+
[1629311269, '10.791666666627847'],
|
|
581
|
+
[1629311989, '14.062500000012108'],
|
|
582
|
+
[1629312709, '10.13749999999466'],
|
|
583
|
+
[1629313429, '16.35000000003251'],
|
|
584
|
+
[1629314149, '13.070833333319271'],
|
|
585
|
+
[1629314869, '15.645833333328483'],
|
|
586
|
+
[1629315589, '9.145833333326053'],
|
|
587
|
+
[1629316309, '13.379166666685109'],
|
|
588
|
+
[1629317029, '9.516666666677338'],
|
|
589
|
+
[1629317749, '12.674999999968946'],
|
|
590
|
+
[1629318469, '11.037499999996115'],
|
|
591
|
+
[1629319189, '13.20416666665551'],
|
|
592
|
+
[1629319909, '9.058333333317321'],
|
|
593
|
+
[1629320629, '15.161311825108413'],
|
|
594
|
+
[1629321349, '8.454166666682184'],
|
|
595
|
+
[1629322069, '14.399999999999025'],
|
|
596
|
+
[1629322789, '10.649999999974767'],
|
|
597
|
+
[1629323509, '7.54583333333963'],
|
|
598
|
+
[1629324229, '14.954166666660356'],
|
|
599
|
+
[1629324949, '10.212500000003871'],
|
|
600
|
+
[1629325669, '8.64583333334545'],
|
|
601
|
+
[1629326389, '14.22500000000582'],
|
|
602
|
+
[1629327109, '7.4333333333440095'],
|
|
603
|
+
[1629327829, '8.058333333331873'],
|
|
604
|
+
[1629328549, '15.215616356196165'],
|
|
605
|
+
[1629329269, '9.191666666665697'],
|
|
606
|
+
[1629329989, '9.820833333324117'],
|
|
607
|
+
[1629330709, '15.487500000017462'],
|
|
608
|
+
[1629331429, '7.1375000000019355'],
|
|
609
|
+
[1629332149, '15.945833333341099'],
|
|
610
|
+
[1629332869, '11.108333333346906'],
|
|
611
|
+
[1629333589, '7.1458333333308985'],
|
|
612
|
+
[1629334309, '13.920833333322662'],
|
|
613
|
+
[1629335029, '9.266666666662786'],
|
|
614
|
+
[1629335749, '13.17916666665647'],
|
|
615
|
+
[1629336469, '13.508333333350791'],
|
|
616
|
+
[1629337189, '10.808333333358561'],
|
|
617
|
+
[1629337909, '15.750000000007276'],
|
|
618
|
+
[1629338629, '7.524999999986903'],
|
|
619
|
+
[1629339349, '16.309853053858916'],
|
|
620
|
+
[1629340069, '10.766666666677338'],
|
|
621
|
+
[1629340789, '14.581179765892813'],
|
|
622
|
+
[1629341509, '7.399073240656932'],
|
|
623
|
+
[1629342229, '10.4297239632305'],
|
|
624
|
+
[1629342949, '15.045833333351766'],
|
|
625
|
+
[1629343669, '12.408333333320726'],
|
|
626
|
+
[1629344389, '10.703570356995925'],
|
|
627
|
+
[1629345109, '10.637499999975262'],
|
|
628
|
+
[1629345829, '13.250000000019398'],
|
|
629
|
+
[1629346549, '11.016666666643374'],
|
|
630
|
+
[1629347269, '13.637500000040745'],
|
|
631
|
+
[1629347989, '7.2458333333634215'],
|
|
632
|
+
[1629348709, '14.224999999981563'],
|
|
633
|
+
[1629349429, '8.02059725373637'],
|
|
634
|
+
[1629350149, '15.791666666700621'],
|
|
635
|
+
[1629350869, '11.08565239129527'],
|
|
636
|
+
[1629351589, '8.120833333353701'],
|
|
637
|
+
[1629352309, '15.42083333331297'],
|
|
638
|
+
[1629353029, '10.779166666688994'],
|
|
639
|
+
[1629353749, '17.141666666696736'],
|
|
640
|
+
[1629354469, '9.629166666685094'],
|
|
641
|
+
[1629355189, '15.662500000034925'],
|
|
642
|
+
[1629355909, '8.187500000033964'],
|
|
643
|
+
[1629356629, '15.650000000023283'],
|
|
644
|
+
[1629357349, '11.870833333329458'],
|
|
645
|
+
[1629358069, '14.445833333326547'],
|
|
646
|
+
[1629358789, '11.237499999988358'],
|
|
647
|
+
[1629359509, '17.304166666654055'],
|
|
648
|
+
[1629360229, '10.945833333341099'],
|
|
649
|
+
[1629360949, '16.475000000015527'],
|
|
650
|
+
[1629361669, '9.220833333359522'],
|
|
651
|
+
[1629362389, '15.687499999985448'],
|
|
652
|
+
[1629363109, '10.799999999993219'],
|
|
653
|
+
[1629363829, '11.758333333321701'],
|
|
654
|
+
[1629364549, '14.076561562546004'],
|
|
655
|
+
[1629365269, '12.450421624522662'],
|
|
656
|
+
[1629365989, '8.699999999977692'],
|
|
657
|
+
[1629366709, '14.85833333334692'],
|
|
658
|
+
[1629367429, '18.04999999995441'],
|
|
659
|
+
[1629368149, '8.512499999972832'],
|
|
660
|
+
[1629368869, '13.28333333331102'],
|
|
661
|
+
[1629369589, '10.553555355550088'],
|
|
662
|
+
[1629370309, '11.42500000004172'],
|
|
663
|
+
[1629371029, '16.945833333350805'],
|
|
664
|
+
[1629371749, '12.54999999999805'],
|
|
665
|
+
[1629372469, '17.500000000048516'],
|
|
666
|
+
[1629373189, '11.89166666665794'],
|
|
667
|
+
[1629373909, '14.520833333372138'],
|
|
668
|
+
[1629374629, '11.154166666698686'],
|
|
669
|
+
[1629375349, '13.712500000062093'],
|
|
670
|
+
[1629376069, '15.949999999987398'],
|
|
671
|
+
[1629376789, '10.70416666661913'],
|
|
672
|
+
[1629377509, '11.207672310332455'],
|
|
673
|
+
[1629378229, '15.48749999996896'],
|
|
674
|
+
[1629378949, '11.895833333328483'],
|
|
675
|
+
[1629379669, '16.711105185982007'],
|
|
676
|
+
[1629380389, '10.666666666656965'],
|
|
677
|
+
[1629381109, '13.654166666674428'],
|
|
678
|
+
[1629381829, '11.112500000017462'],
|
|
679
|
+
[1629382549, '15.47500000000582'],
|
|
680
|
+
[1629383269, '8.399713371552394'],
|
|
681
|
+
[1629383989, '10.858333333356626'],
|
|
682
|
+
[1629384709, '14.649999999989333'],
|
|
683
|
+
[1629385429, '8.012499999992258'],
|
|
684
|
+
[1629386149, '15.055018339427065'],
|
|
685
|
+
[1629386869, '12.158333333354662'],
|
|
686
|
+
[1629387589, '9.740735803764338'],
|
|
687
|
+
[1629388309, '13.333333333309085'],
|
|
688
|
+
[1629389029, '7.299999999983527'],
|
|
689
|
+
[1629389749, '15.92083333334206'],
|
|
690
|
+
[1629390469, '10.462499999969921'],
|
|
691
|
+
[1629391189, '14.945833333355637'],
|
|
692
|
+
[1629391909, '9.787500000020373'],
|
|
693
|
+
[1629392629, '9.895833333333343'],
|
|
694
|
+
],
|
|
695
|
+
getLegendLabel: (metricPrefix, resource) => {
|
|
696
|
+
return resource;
|
|
697
|
+
},
|
|
698
|
+
getTooltipLabel: (metricPrefix, resource) => {
|
|
699
|
+
return resource;
|
|
700
|
+
},
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
resource: 'master-0',
|
|
704
|
+
data: [
|
|
705
|
+
[1629306229, '7.725000000003391'],
|
|
706
|
+
[1629306949, '7.2916666666545495'],
|
|
707
|
+
[1629307669, '6.387500000006796'],
|
|
708
|
+
[1629308389, '6.749999999980588'],
|
|
709
|
+
[1629309109, '8.891666666665202'],
|
|
710
|
+
[1629309829, '7.383333333309565'],
|
|
711
|
+
[1629310549, '8.904166666664736'],
|
|
712
|
+
[1629311269, '7.63749999999466'],
|
|
713
|
+
[1629311989, '8.279166666676858'],
|
|
714
|
+
[1629312709, '7.1708333333420455'],
|
|
715
|
+
[1629313429, '9.079166666682198'],
|
|
716
|
+
[1629314149, '7.504166666670557'],
|
|
717
|
+
[1629314869, '8.766666666706442'],
|
|
718
|
+
[1629315589, '7.3083333333245974'],
|
|
719
|
+
[1629316309, '8.537500000020373'],
|
|
720
|
+
[1629317029, '7.966666666640478'],
|
|
721
|
+
[1629317749, '8.245833333336734'],
|
|
722
|
+
[1629318469, '7.320833333324117'],
|
|
723
|
+
[1629319189, '9.249999999992724'],
|
|
724
|
+
[1629319909, '7.154166666659876'],
|
|
725
|
+
[1629320629, '8.195833333326547'],
|
|
726
|
+
[1629321349, '7.516666666670062'],
|
|
727
|
+
[1629322069, '7.350000000005835'],
|
|
728
|
+
[1629322789, '8.158333333340124'],
|
|
729
|
+
[1629323509, '6.616666666656485'],
|
|
730
|
+
[1629324229, '7.962500000006315'],
|
|
731
|
+
[1629324949, '7.237499999985943'],
|
|
732
|
+
[1629325669, '6.441666666663252'],
|
|
733
|
+
[1629326389, '7.666666666652105'],
|
|
734
|
+
[1629327109, '7.650000000030559'],
|
|
735
|
+
[1629327829, '7.604166666666671'],
|
|
736
|
+
[1629328549, '7.687500000004846'],
|
|
737
|
+
[1629329269, '7.860094647752163'],
|
|
738
|
+
[1629329989, '6.779166666638048'],
|
|
739
|
+
[1629330709, '7.9500000000189175'],
|
|
740
|
+
[1629331429, '6.991666666678299'],
|
|
741
|
+
[1629332149, '8.166666666693345'],
|
|
742
|
+
[1629332869, '7.933333333348855'],
|
|
743
|
+
[1629333589, '6.837500000001455'],
|
|
744
|
+
[1629334309, '7.766666666672478'],
|
|
745
|
+
[1629335029, '7.445833333319271'],
|
|
746
|
+
[1629335749, '6.883333333353221'],
|
|
747
|
+
[1629336469, '7.854166666632693'],
|
|
748
|
+
[1629337189, '7.342599073416295'],
|
|
749
|
+
[1629337909, '9.437499999973326'],
|
|
750
|
+
[1629338629, '7.283333333301329'],
|
|
751
|
+
[1629339349, '8.604166666688485'],
|
|
752
|
+
[1629340069, '7.162500000000975'],
|
|
753
|
+
[1629340789, '7.491666666683145'],
|
|
754
|
+
[1629341509, '7.308333333348855'],
|
|
755
|
+
[1629342229, '6.808333333295508'],
|
|
756
|
+
[1629342949, '9.154166666630786'],
|
|
757
|
+
[1629343669, '6.929166666668593'],
|
|
758
|
+
[1629344389, '7.612499999959255'],
|
|
759
|
+
[1629345109, '7.2083333333769986'],
|
|
760
|
+
[1629345829, '9.53750000000582'],
|
|
761
|
+
[1629346549, '6.879082789026469'],
|
|
762
|
+
[1629347269, '7.9416666666656965'],
|
|
763
|
+
[1629347989, '6.78333333334497'],
|
|
764
|
+
[1629348709, '7.258333333326547'],
|
|
765
|
+
[1629349429, '8.27500000004268'],
|
|
766
|
+
[1629350149, '7.383333333370203'],
|
|
767
|
+
[1629350869, '8.212500000032989'],
|
|
768
|
+
[1629351589, '6.912499999962179'],
|
|
769
|
+
[1629352309, '7.941666666641439'],
|
|
770
|
+
[1629353029, '7.387499999992244'],
|
|
771
|
+
[1629353749, '8.483333333279006'],
|
|
772
|
+
[1629354469, '7.291666666666657'],
|
|
773
|
+
[1629355189, '8.42500000001263'],
|
|
774
|
+
[1629355909, '7.354166666652105'],
|
|
775
|
+
[1629356629, '8.541666666666671'],
|
|
776
|
+
[1629357349, '7.116666666624951'],
|
|
777
|
+
[1629358069, '8.241666666654055'],
|
|
778
|
+
[1629358789, '7.699999999967972'],
|
|
779
|
+
[1629359509, '8.429166666683159'],
|
|
780
|
+
[1629360229, '7.541666666681223'],
|
|
781
|
+
[1629360949, '9.304166666673467'],
|
|
782
|
+
[1629361669, '7.004166666617181'],
|
|
783
|
+
[1629362389, '7.8250000000116415'],
|
|
784
|
+
[1629363109, '7.445833333282877'],
|
|
785
|
+
[1629363829, '7.075000000040745'],
|
|
786
|
+
[1629364549, '7.208333333328483'],
|
|
787
|
+
[1629365269, '7.525000000023269'],
|
|
788
|
+
[1629365989, '6.945833333350791'],
|
|
789
|
+
[1629366709, '12.220833333340124'],
|
|
790
|
+
[1629367429, '7.062500000029104'],
|
|
791
|
+
[1629368149, '7.500000000024258'],
|
|
792
|
+
[1629368869, '8.87916666666571'],
|
|
793
|
+
[1629369589, '7.32916666665308'],
|
|
794
|
+
[1629370309, '9.841666666664722'],
|
|
795
|
+
[1629371029, '7.737500000027168'],
|
|
796
|
+
[1629371749, '8.512499999997075'],
|
|
797
|
+
[1629372469, '9.079166666609439'],
|
|
798
|
+
[1629373189, '7.679166666663747'],
|
|
799
|
+
[1629373909, '9.379166666646285'],
|
|
800
|
+
[1629374629, '8.370833333343995'],
|
|
801
|
+
[1629375349, '7.6916666666754026'],
|
|
802
|
+
[1629376069, '8.383333333379909'],
|
|
803
|
+
[1629376789, '7.641666666628836'],
|
|
804
|
+
[1629377509, '9.016666666672492'],
|
|
805
|
+
[1629378229, '7.212499999999039'],
|
|
806
|
+
[1629378949, '7.396760323959839'],
|
|
807
|
+
[1629379669, '9.129166666680248'],
|
|
808
|
+
[1629380389, '7.391666666711288'],
|
|
809
|
+
[1629381109, '8.599999999957305'],
|
|
810
|
+
[1629381829, '8.141666666682184'],
|
|
811
|
+
[1629382549, '9.14166666669189'],
|
|
812
|
+
[1629383269, '7.641666666701582'],
|
|
813
|
+
[1629383989, '9.320833333331393'],
|
|
814
|
+
[1629384709, '7.462499999989319'],
|
|
815
|
+
[1629385429, '9.0625'],
|
|
816
|
+
[1629386149, '7.520833333328497'],
|
|
817
|
+
[1629386869, '9.366666666634643'],
|
|
818
|
+
[1629387589, '7.145833333318791'],
|
|
819
|
+
[1629388309, '8.962500000028129'],
|
|
820
|
+
[1629389029, '7.558333333363407'],
|
|
821
|
+
[1629389749, '9.108333333327494'],
|
|
822
|
+
[1629390469, '7.837499999974767'],
|
|
823
|
+
[1629391189, '8.237499999983498'],
|
|
824
|
+
[1629391909, '6.825000000050451'],
|
|
825
|
+
[1629392629, '8.391666666672478'],
|
|
826
|
+
],
|
|
827
|
+
getLegendLabel: (metricPrefix, resource) => {
|
|
828
|
+
return resource;
|
|
829
|
+
},
|
|
830
|
+
getTooltipLabel: (metricPrefix, resource) => {
|
|
831
|
+
return resource;
|
|
832
|
+
},
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
resource: 'master-1',
|
|
836
|
+
data: [
|
|
837
|
+
[1629306229, '11.633333333375049'],
|
|
838
|
+
[1629306949, '11.475000000015541'],
|
|
839
|
+
[1629307669, '11.516666666648234'],
|
|
840
|
+
[1629308389, '11.375000000019412'],
|
|
841
|
+
[1629309109, '11.866666666658915'],
|
|
842
|
+
[1629309829, '11.508333333331393'],
|
|
843
|
+
[1629310549, '11.375000000019412'],
|
|
844
|
+
[1629311269, '11.408333333335278'],
|
|
845
|
+
[1629311989, '11.116666666639503'],
|
|
846
|
+
[1629312709, '11.433333333334303'],
|
|
847
|
+
[1629313429, '11.833333333343035'],
|
|
848
|
+
[1629314149, '11.991666666654055'],
|
|
849
|
+
[1629314869, '11.449999999967986'],
|
|
850
|
+
[1629315589, '11.841666666659862'],
|
|
851
|
+
[1629316309, '11.666666666666657'],
|
|
852
|
+
[1629317029, '12.22500000001068'],
|
|
853
|
+
[1629317749, '11.474999999991269'],
|
|
854
|
+
[1629318469, '11.650000000008731'],
|
|
855
|
+
[1629319189, '11.683333333348855'],
|
|
856
|
+
[1629319909, '11.000000000009706'],
|
|
857
|
+
[1629320629, '11.266666666706442'],
|
|
858
|
+
[1629321349, '11.433333333334303'],
|
|
859
|
+
[1629322069, '12.258333333326561'],
|
|
860
|
+
[1629322789, '11.616666666668607'],
|
|
861
|
+
[1629323509, '11.399999999994165'],
|
|
862
|
+
[1629324229, '11.316666666680248'],
|
|
863
|
+
[1629324949, '11.441666666675403'],
|
|
864
|
+
[1629325669, '12.666666666627862'],
|
|
865
|
+
[1629326389, '11.900000000023283'],
|
|
866
|
+
[1629327109, '11.266666666657926'],
|
|
867
|
+
[1629327829, '12.541666666656965'],
|
|
868
|
+
[1629328549, '12.024999999969936'],
|
|
869
|
+
[1629329269, '11.924999999949563'],
|
|
870
|
+
[1629329989, '11.541666666671517'],
|
|
871
|
+
[1629330709, '11.325000000021348'],
|
|
872
|
+
[1629331429, '11.775000000003885'],
|
|
873
|
+
[1629332149, '12.008333333336239'],
|
|
874
|
+
[1629332869, '12.208333333328483'],
|
|
875
|
+
[1629333589, '12.150000000013577'],
|
|
876
|
+
[1629334309, '11.958333333338174'],
|
|
877
|
+
[1629335029, '12.591666666630772'],
|
|
878
|
+
[1629335749, '12.124999999990308'],
|
|
879
|
+
[1629336469, '11.783333333320726'],
|
|
880
|
+
[1629337189, '12.63333333331201'],
|
|
881
|
+
[1629337909, '12.625000000019398'],
|
|
882
|
+
[1629338629, '12.283333333349816'],
|
|
883
|
+
[1629339349, '12.724999999991255'],
|
|
884
|
+
[1629340069, '12.358333333322662'],
|
|
885
|
+
[1629340789, '12.366666666688005'],
|
|
886
|
+
[1629341509, '12.30000000000777'],
|
|
887
|
+
[1629342229, '12.050000000017462'],
|
|
888
|
+
[1629342949, '14.900000000003885'],
|
|
889
|
+
[1629343669, '11.658333333374088'],
|
|
890
|
+
[1629344389, '12.125000000014538'],
|
|
891
|
+
[1629345109, '12.591666666679274'],
|
|
892
|
+
[1629345829, '11.816666666685109'],
|
|
893
|
+
[1629346549, '10.925000000012602'],
|
|
894
|
+
[1629347269, '11.775000000052387'],
|
|
895
|
+
[1629347989, '12.65833333331102'],
|
|
896
|
+
[1629348709, '12.366666666639503'],
|
|
897
|
+
[1629349429, '11.549999999988358'],
|
|
898
|
+
[1629350149, '12.27500000008149'],
|
|
899
|
+
[1629350869, '12.058333333358547'],
|
|
900
|
+
[1629351589, '11.650000000032975'],
|
|
901
|
+
[1629352309, '11.599999999986423'],
|
|
902
|
+
[1629353029, '11.983333333337214'],
|
|
903
|
+
[1629353749, '11.82500000000195'],
|
|
904
|
+
[1629354469, '11.8666666666104'],
|
|
905
|
+
[1629355189, '11.383333333311995'],
|
|
906
|
+
[1629355909, '11.558333333377973'],
|
|
907
|
+
[1629356629, '12.07499999999223'],
|
|
908
|
+
[1629357349, '12.69999999999223'],
|
|
909
|
+
[1629358069, '11.71666666661622'],
|
|
910
|
+
[1629358789, '11.783333333344984'],
|
|
911
|
+
[1629359509, '11.674999999959255'],
|
|
912
|
+
[1629360229, '11.958333333362447'],
|
|
913
|
+
[1629360949, '12.333333333323637'],
|
|
914
|
+
[1629361669, '11.099999999957305'],
|
|
915
|
+
[1629362389, '12.049999999968946'],
|
|
916
|
+
[1629363109, '11.750000000029104'],
|
|
917
|
+
[1629363829, '11.866666666658901'],
|
|
918
|
+
[1629364549, '12.908333333374074'],
|
|
919
|
+
[1629365269, '12.041666666676363'],
|
|
920
|
+
[1629365989, '11.924999999949549'],
|
|
921
|
+
[1629366709, '12.541666666705481'],
|
|
922
|
+
[1629367429, '11.941666666680234'],
|
|
923
|
+
[1629368149, '12.433333333222734'],
|
|
924
|
+
[1629368869, '11.266666666633682'],
|
|
925
|
+
[1629369589, '11.399999999945678'],
|
|
926
|
+
[1629370309, '12.35000000000582'],
|
|
927
|
+
[1629371029, '11.191666666612335'],
|
|
928
|
+
[1629371749, '12.19166666676756'],
|
|
929
|
+
[1629372469, '12.050000000017462'],
|
|
930
|
+
[1629373189, '12.708333333333343'],
|
|
931
|
+
[1629373909, '13.274999999945678'],
|
|
932
|
+
[1629374629, '11.983333333288712'],
|
|
933
|
+
[1629375349, '11.816666666612335'],
|
|
934
|
+
[1629376069, '12.425000000027168'],
|
|
935
|
+
[1629376789, '13.383333333331393'],
|
|
936
|
+
[1629377509, '12.041666666627862'],
|
|
937
|
+
[1629378229, '13.174999999998064'],
|
|
938
|
+
[1629378949, '12.691666666602643'],
|
|
939
|
+
[1629379669, '12.71666666672293'],
|
|
940
|
+
[1629380389, '11.608333333327508'],
|
|
941
|
+
[1629381109, '12.100000000015527'],
|
|
942
|
+
[1629381829, '12.58333333331393'],
|
|
943
|
+
[1629382549, '13.166666666705467'],
|
|
944
|
+
[1629383269, '12.475000000025233'],
|
|
945
|
+
[1629383989, '12.550000000046566'],
|
|
946
|
+
[1629384709, '11.708333333323623'],
|
|
947
|
+
[1629385429, '12.300000000007756'],
|
|
948
|
+
[1629386149, '13.741666666707403'],
|
|
949
|
+
[1629386869, '13.141666666633682'],
|
|
950
|
+
[1629387589, '12.608333333288712'],
|
|
951
|
+
[1629388309, '13.766666666682198'],
|
|
952
|
+
[1629389029, '13.241666666629811'],
|
|
953
|
+
[1629389749, '11.79166666668607'],
|
|
954
|
+
[1629390469, '12.041666666724879'],
|
|
955
|
+
[1629391189, '12.400000000052387'],
|
|
956
|
+
[1629391909, '13.133333333292583'],
|
|
957
|
+
[1629392629, '12.983333333298404'],
|
|
958
|
+
],
|
|
959
|
+
getLegendLabel: (metricPrefix, resource) => {
|
|
960
|
+
return resource;
|
|
961
|
+
},
|
|
962
|
+
getTooltipLabel: (metricPrefix, resource) => {
|
|
963
|
+
return resource;
|
|
964
|
+
},
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
resource: 'worker-0',
|
|
968
|
+
data: [
|
|
969
|
+
[1629306229, '3.383333333331379'],
|
|
970
|
+
[1629306949, '3.324999999992258'],
|
|
971
|
+
[1629307669, '3.3249999999922437'],
|
|
972
|
+
[1629308389, '3.525000000008731'],
|
|
973
|
+
[1629309109, '3.3166666666511446'],
|
|
974
|
+
[1629309829, '3.4500000000116415'],
|
|
975
|
+
[1629310549, '3.2916666666278616'],
|
|
976
|
+
[1629311269, '3.1833333333391494'],
|
|
977
|
+
[1629311989, '3.3249999999922437'],
|
|
978
|
+
[1629312709, '3.3249999999922437'],
|
|
979
|
+
[1629313429, '3.3083333333100597'],
|
|
980
|
+
[1629314149, '3.0750000000019355'],
|
|
981
|
+
[1629314869, '3.383333333331393'],
|
|
982
|
+
[1629315589, '3.2833333333110204'],
|
|
983
|
+
[1629316309, '3.4333333333294433'],
|
|
984
|
+
[1629317029, '3.3083333333343177'],
|
|
985
|
+
[1629317749, '3.3166666666754026'],
|
|
986
|
+
[1629318469, '3.383333333331393'],
|
|
987
|
+
[1629319189, '3.3583333333323537'],
|
|
988
|
+
[1629319909, '3.349999999991269'],
|
|
989
|
+
[1629320629, '3.408333333330418'],
|
|
990
|
+
[1629321349, '3.2999999999447027'],
|
|
991
|
+
[1629322069, '3.2583333333119953'],
|
|
992
|
+
[1629322789, '3.51666666669189'],
|
|
993
|
+
[1629323509, '3.400000000013577'],
|
|
994
|
+
[1629324229, '3.3083333333343177'],
|
|
995
|
+
[1629324949, '3.2833333333352783'],
|
|
996
|
+
[1629325669, '3.3416666667229293'],
|
|
997
|
+
[1629326389, '3.466666666645324'],
|
|
998
|
+
[1629327109, '3.0916666667326353'],
|
|
999
|
+
[1629327829, '3.433333333377959'],
|
|
1000
|
+
[1629328549, '3.4416666666705424'],
|
|
1001
|
+
[1629329269, '3.500000000009706'],
|
|
1002
|
+
[1629329989, '3.350000000015527'],
|
|
1003
|
+
[1629330709, '3.3916666666239763'],
|
|
1004
|
+
[1629331429, '3.5500000000077563'],
|
|
1005
|
+
[1629332149, '3.5583333333973712'],
|
|
1006
|
+
[1629332869, '3.583333333323637'],
|
|
1007
|
+
[1629333589, '3.491666666668607'],
|
|
1008
|
+
[1629334309, '3.350000000015527'],
|
|
1009
|
+
[1629335029, '3.5166666666433883'],
|
|
1010
|
+
[1629335749, '3.4416666666705567'],
|
|
1011
|
+
[1629336469, '3.4249999999883585'],
|
|
1012
|
+
[1629337189, '3.6000000000543366'],
|
|
1013
|
+
[1629337909, '3.374999999990308'],
|
|
1014
|
+
[1629338629, '3.4333333333294433'],
|
|
1015
|
+
[1629339349, '3.341666666625926'],
|
|
1016
|
+
[1629340069, '3.624999999980588'],
|
|
1017
|
+
[1629340789, '3.4250000000368743'],
|
|
1018
|
+
[1629341509, '3.3999999999650754'],
|
|
1019
|
+
[1629342229, '3.5833333333721384'],
|
|
1020
|
+
[1629342949, '4.400000000023269'],
|
|
1021
|
+
[1629343669, '3.358333333356626'],
|
|
1022
|
+
[1629344389, '3.5583333333973712'],
|
|
1023
|
+
[1629345109, '3.2166666667035315'],
|
|
1024
|
+
[1629345829, '3.3666666666977108'],
|
|
1025
|
+
[1629346549, '3.2083333333624466'],
|
|
1026
|
+
[1629347269, '3.641666666662786'],
|
|
1027
|
+
[1629347989, '3.5416666667151873'],
|
|
1028
|
+
[1629348709, '3.433333333280956'],
|
|
1029
|
+
[1629349429, '3.4166666666472594'],
|
|
1030
|
+
[1629350149, '3.3666666666977108'],
|
|
1031
|
+
[1629350869, '3.75'],
|
|
1032
|
+
[1629351589, '3.3250000000407454'],
|
|
1033
|
+
[1629352309, '3.400000000013577'],
|
|
1034
|
+
[1629353029, '3.316666666602643'],
|
|
1035
|
+
[1629353749, '3.6833333333197515'],
|
|
1036
|
+
[1629354469, '3.5416666666181413'],
|
|
1037
|
+
[1629355189, '3.316666666602643'],
|
|
1038
|
+
[1629355909, '3.491666666668607'],
|
|
1039
|
+
[1629356629, '3.3166666666996463'],
|
|
1040
|
+
[1629357349, '3.466666666645324'],
|
|
1041
|
+
[1629358069, '3.5416666666666714'],
|
|
1042
|
+
[1629358789, '3.324999999943728'],
|
|
1043
|
+
[1629359509, '3.5166666666433883'],
|
|
1044
|
+
[1629360229, '3.683333333368253'],
|
|
1045
|
+
[1629360949, '3.483333333327508'],
|
|
1046
|
+
[1629361669, '3.408333333403178'],
|
|
1047
|
+
[1629362389, '3.466666666645324'],
|
|
1048
|
+
[1629363109, '3.500000000009706'],
|
|
1049
|
+
[1629363829, '3.5583333333973712'],
|
|
1050
|
+
[1629364549, '3.358333333356626'],
|
|
1051
|
+
[1629365269, '3.808333333339135'],
|
|
1052
|
+
[1629365989, '3.4333333332809417'],
|
|
1053
|
+
[1629366709, '3.5500000000077563'],
|
|
1054
|
+
[1629367429, '3.491666666620091'],
|
|
1055
|
+
[1629368149, '3.2250000000931323'],
|
|
1056
|
+
[1629368869, '3.2666666667500976'],
|
|
1057
|
+
[1629369589, '3.400000000062093'],
|
|
1058
|
+
[1629370309, '3.3749999999417923'],
|
|
1059
|
+
[1629371029, '3.0499999999786525'],
|
|
1060
|
+
[1629371749, '3.6749999999301366'],
|
|
1061
|
+
[1629372469, '3.566666666592937'],
|
|
1062
|
+
[1629373189, '3.4166666666472594'],
|
|
1063
|
+
[1629373909, '3.6166666666880047'],
|
|
1064
|
+
[1629374629, '3.59166666661622'],
|
|
1065
|
+
[1629375349, '3.616666666688019'],
|
|
1066
|
+
[1629376069, '3.7500000000485016'],
|
|
1067
|
+
[1629376789, '3.508333333350791'],
|
|
1068
|
+
[1629377509, '3.5166666665948867'],
|
|
1069
|
+
[1629378229, '3.374999999990308'],
|
|
1070
|
+
[1629378949, '3.524999999984473'],
|
|
1071
|
+
[1629379669, '3.666666666686069'],
|
|
1072
|
+
[1629380389, '3.60833333334692'],
|
|
1073
|
+
[1629381109, '3.4249999999883585'],
|
|
1074
|
+
[1629381829, '3.566666666738456'],
|
|
1075
|
+
[1629382549, '3.566666666592937'],
|
|
1076
|
+
[1629383269, '3.583333333323637'],
|
|
1077
|
+
[1629383989, '3.5416666666666714'],
|
|
1078
|
+
[1629384709, '3.5499999999592546'],
|
|
1079
|
+
[1629385429, '3.3416666665774244'],
|
|
1080
|
+
[1629386149, '3.4416666666705424'],
|
|
1081
|
+
[1629386869, '3.7249999999282153'],
|
|
1082
|
+
[1629387589, '3.6416666666142703'],
|
|
1083
|
+
[1629388309, '3.566666666738456'],
|
|
1084
|
+
[1629389029, '3.8083333332421603'],
|
|
1085
|
+
[1629389749, '3.5166666666433883'],
|
|
1086
|
+
[1629390469, '3.633333333321687'],
|
|
1087
|
+
[1629391189, '3.874999999970896'],
|
|
1088
|
+
[1629391909, '3.7250000000252186'],
|
|
1089
|
+
[1629392629, '3.7666666666336823'],
|
|
1090
|
+
],
|
|
1091
|
+
getLegendLabel: (metricPrefix, resource) => {
|
|
1092
|
+
return resource;
|
|
1093
|
+
},
|
|
1094
|
+
getTooltipLabel: (metricPrefix, resource) => {
|
|
1095
|
+
return resource;
|
|
1096
|
+
},
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
resource: 'worker-1',
|
|
1100
|
+
data: [
|
|
1101
|
+
[1629306229, '3.375000000014566'],
|
|
1102
|
+
[1629306949, '3.641666666662786'],
|
|
1103
|
+
[1629307669, '3.5499999999835126'],
|
|
1104
|
+
[1629308389, '3.408333333330418'],
|
|
1105
|
+
[1629309109, '3.3083333333343177'],
|
|
1106
|
+
[1629309829, '3.26666666665308'],
|
|
1107
|
+
[1629310549, '3.2166666666550157'],
|
|
1108
|
+
[1629311269, '3.124999999999986'],
|
|
1109
|
+
[1629311989, '3.2749999999941792'],
|
|
1110
|
+
[1629312709, '3.0833333333430346'],
|
|
1111
|
+
[1629313429, '3.2250000000203727'],
|
|
1112
|
+
[1629314149, '3.0666666666608506'],
|
|
1113
|
+
[1629314869, '3.286009464784385'],
|
|
1114
|
+
[1629315589, '3.350000000015527'],
|
|
1115
|
+
[1629316309, '3.4250000000126164'],
|
|
1116
|
+
[1629317029, '3.491666666668607'],
|
|
1117
|
+
[1629317749, '3.249999999995154'],
|
|
1118
|
+
[1629318469, '3.3833333333798947'],
|
|
1119
|
+
[1629319189, '3.3083333333343177'],
|
|
1120
|
+
[1629319909, '3.383333333355637'],
|
|
1121
|
+
[1629320629, '3.4666666666453096'],
|
|
1122
|
+
[1629321349, '3.4083333333304324'],
|
|
1123
|
+
[1629322069, '3.349999999991269'],
|
|
1124
|
+
[1629322789, '3.375000000014552'],
|
|
1125
|
+
[1629323509, '3.3499999999912546'],
|
|
1126
|
+
[1629324229, '3.366666666649209'],
|
|
1127
|
+
[1629324949, '3.283333333335264'],
|
|
1128
|
+
[1629325669, '3.250000000019398'],
|
|
1129
|
+
[1629326389, '3.60833333334692'],
|
|
1130
|
+
[1629327109, '3.366666666649195'],
|
|
1131
|
+
[1629327829, '3.383333333331393'],
|
|
1132
|
+
[1629328549, '3.2833333332867625'],
|
|
1133
|
+
[1629329269, '3.525000000032989'],
|
|
1134
|
+
[1629329989, '3.374999999990308'],
|
|
1135
|
+
[1629330709, '3.3166666666511446'],
|
|
1136
|
+
[1629331429, '3.7666666666336823'],
|
|
1137
|
+
[1629332149, '3.491666666620091'],
|
|
1138
|
+
[1629332869, '3.816666666631747'],
|
|
1139
|
+
[1629333589, '3.5763090357378644'],
|
|
1140
|
+
[1629334309, '3.4583333333042248'],
|
|
1141
|
+
[1629335029, '3.391666666672492'],
|
|
1142
|
+
[1629335749, '3.4030278778216854'],
|
|
1143
|
+
[1629336469, '3.4833333333760237'],
|
|
1144
|
+
[1629337189, '3.3666666667462266'],
|
|
1145
|
+
[1629337909, '3.416666666744277'],
|
|
1146
|
+
[1629338629, '3.4013265340190912'],
|
|
1147
|
+
[1629339349, '3.4249999999398426'],
|
|
1148
|
+
[1629340069, '3.3763290337943346'],
|
|
1149
|
+
[1629340789, '3.450000000060143'],
|
|
1150
|
+
[1629341509, '3.474999999937907'],
|
|
1151
|
+
[1629342229, '3.758333333341085'],
|
|
1152
|
+
[1629342949, '3.8166666666802485'],
|
|
1153
|
+
[1629343669, '3.624999999980588'],
|
|
1154
|
+
[1629344389, '3.5666666666899403'],
|
|
1155
|
+
[1629345109, '3.37500000003881'],
|
|
1156
|
+
[1629345829, '3.2583333333119953'],
|
|
1157
|
+
[1629346549, '3.2166666666065282'],
|
|
1158
|
+
[1629347269, '3.6000000000058208'],
|
|
1159
|
+
[1629347989, '3.51666666669189'],
|
|
1160
|
+
[1629348709, '3.5583333333003537'],
|
|
1161
|
+
[1629349429, '3.183333333387665'],
|
|
1162
|
+
[1629350149, '3.5083333332537734'],
|
|
1163
|
+
[1629350869, '3.5833333333721384'],
|
|
1164
|
+
[1629351589, '3.4166666666472594'],
|
|
1165
|
+
[1629352309, '3.441666666622041'],
|
|
1166
|
+
[1629353029, '3.3166666666511446'],
|
|
1167
|
+
[1629353749, '3.300000000065978'],
|
|
1168
|
+
[1629354469, '3.2916666666763774'],
|
|
1169
|
+
[1629355189, '3.4249999999883585'],
|
|
1170
|
+
[1629355909, '3.3583333332596084'],
|
|
1171
|
+
[1629356629, '3.4333333333294433'],
|
|
1172
|
+
[1629357349, '3.3666666666007075'],
|
|
1173
|
+
[1629358069, '3.424999999939857'],
|
|
1174
|
+
[1629358789, '3.383333333331393'],
|
|
1175
|
+
[1629359509, '3.341666666674442'],
|
|
1176
|
+
[1629360229, '3.6500000000038852'],
|
|
1177
|
+
[1629360949, '3.5166666666433883'],
|
|
1178
|
+
[1629361669, '3.5583333333003395'],
|
|
1179
|
+
[1629362389, '3.3500000000640284'],
|
|
1180
|
+
[1629363109, '3.4666666666938255'],
|
|
1181
|
+
[1629363829, '3.7999999999980645'],
|
|
1182
|
+
[1629364549, '3.491666666717123'],
|
|
1183
|
+
[1629365269, '3.7916666666569654'],
|
|
1184
|
+
[1629365989, '3.5416666666181698'],
|
|
1185
|
+
[1629366709, '3.6000000000058208'],
|
|
1186
|
+
[1629367429, '3.349999999967025'],
|
|
1187
|
+
[1629368149, '3.333333333284827'],
|
|
1188
|
+
[1629368869, '3.35833333330811'],
|
|
1189
|
+
[1629369589, '3.216666666606514'],
|
|
1190
|
+
[1629370309, '3.141666666682184'],
|
|
1191
|
+
[1629371029, '3.374999999990308'],
|
|
1192
|
+
[1629371749, '3.500000000009706'],
|
|
1193
|
+
[1629372469, '3.4583333333527406'],
|
|
1194
|
+
[1629373189, '3.491666666668607'],
|
|
1195
|
+
[1629373909, '3.5833333333721242'],
|
|
1196
|
+
[1629374629, '3.3666666666006932'],
|
|
1197
|
+
[1629375349, '3.3833333332828914'],
|
|
1198
|
+
[1629376069, '3.6500000000038852'],
|
|
1199
|
+
[1629376789, '3.441666666622041'],
|
|
1200
|
+
[1629377509, '3.724999999976717'],
|
|
1201
|
+
[1629378229, '3.7333333333663177'],
|
|
1202
|
+
[1629378949, '3.7249999999767027'],
|
|
1203
|
+
[1629379669, '3.6916666667093523'],
|
|
1204
|
+
[1629380389, '3.3583333334051275'],
|
|
1205
|
+
[1629381109, '3.4999999999612044'],
|
|
1206
|
+
[1629381829, '3.524999999984473'],
|
|
1207
|
+
[1629382549, '3.683333333416769'],
|
|
1208
|
+
[1629383269, '3.7083333333430346'],
|
|
1209
|
+
[1629383989, '3.524999999984473'],
|
|
1210
|
+
[1629384709, '3.5500000000077563'],
|
|
1211
|
+
[1629385429, '3.633333333321687'],
|
|
1212
|
+
[1629386149, '3.766666666682184'],
|
|
1213
|
+
[1629386869, '3.5416666666666714'],
|
|
1214
|
+
[1629387589, '3.5583333333003537'],
|
|
1215
|
+
[1629388309, '3.366666666649195'],
|
|
1216
|
+
[1629389029, '3.7416666666103993'],
|
|
1217
|
+
[1629389749, '3.4166666666472594'],
|
|
1218
|
+
[1629390469, '3.758333333341085'],
|
|
1219
|
+
[1629391189, '3.416666666744277'],
|
|
1220
|
+
[1629391909, '3.81666666672875'],
|
|
1221
|
+
[1629392629, '3.8333333333624324'],
|
|
1222
|
+
],
|
|
1223
|
+
getLegendLabel: (metricPrefix, resource) => {
|
|
1224
|
+
return resource;
|
|
1225
|
+
},
|
|
1226
|
+
getTooltipLabel: (metricPrefix, resource) => {
|
|
1227
|
+
return resource;
|
|
1228
|
+
},
|
|
1229
|
+
},
|
|
1230
|
+
];
|
|
1231
|
+
// used by the read/write
|
|
1232
|
+
export const dataLineChartV2_readwrite = [
|
|
1233
|
+
{
|
|
1234
|
+
metricPrefix: 'write',
|
|
1235
|
+
resource: 'bootstrap',
|
|
1236
|
+
data: [
|
|
1237
|
+
[1629306229, '26.04111361316376'],
|
|
1238
|
+
[1629306949, '26.484818781248165'],
|
|
1239
|
+
[1629307669, '10'],
|
|
1240
|
+
[1629308389, '26.5571179107814'],
|
|
1241
|
+
[1629309109, '27.09857445297962'],
|
|
1242
|
+
[1629309829, '26.184236379790775'],
|
|
1243
|
+
[1629310549, '27.408870512996756'],
|
|
1244
|
+
[1629311269, '27.59357757487571'],
|
|
1245
|
+
[1629311989, '27.755021039292615'],
|
|
1246
|
+
[1629312709, '28.04025831937969'],
|
|
1247
|
+
[1629313429, '28.15628120820206'],
|
|
1248
|
+
[1629314149, '28.83756525057919'],
|
|
1249
|
+
[1629314869, '27.69292739913226'],
|
|
1250
|
+
[1629315589, '28.88308419233634'],
|
|
1251
|
+
[1629316309, '28.843811501906217'],
|
|
1252
|
+
[1629317029, '27.750471604270956'],
|
|
1253
|
+
[1629317749, '28.72810830311238'],
|
|
1254
|
+
[1629318469, '28.723755600415984'],
|
|
1255
|
+
[1629319189, '28.44904349973035'],
|
|
1256
|
+
[1629319909, '29.03921588397121'],
|
|
1257
|
+
[1629320629, '28.891027259968737'],
|
|
1258
|
+
[1629321349, '29.1377295958454'],
|
|
1259
|
+
[1629322069, '29.43324613992735'],
|
|
1260
|
+
[1629322789, '28.982286467348956'],
|
|
1261
|
+
[1629323509, '29.002426939147497'],
|
|
1262
|
+
[1629324229, '29.29877959561179'],
|
|
1263
|
+
[1629324949, '29.424983382266404'],
|
|
1264
|
+
[1629325669, '28.98292584740605'],
|
|
1265
|
+
[1629326389, '29.222496636492025'],
|
|
1266
|
+
[1629327109, '29.687522670326544'],
|
|
1267
|
+
[1629327829, '29.499053102726975'],
|
|
1268
|
+
[1629328549, '29.016394934240992'],
|
|
1269
|
+
[1629329269, '29.284713234355664'],
|
|
1270
|
+
[1629329989, '29.801381503571065'],
|
|
1271
|
+
[1629330709, '29.687793177273775'],
|
|
1272
|
+
[1629331429, '30.122768348424756'],
|
|
1273
|
+
[1629332149, '29.01211600616658'],
|
|
1274
|
+
[1629332869, '29.513217830145734'],
|
|
1275
|
+
[1629333589, '30.031509141044538'],
|
|
1276
|
+
[1629334309, '30.205813981225347'],
|
|
1277
|
+
],
|
|
1278
|
+
getTooltipLabel: (metricPrefix, resource) => {
|
|
1279
|
+
return `${resource}-${metricPrefix}`;
|
|
1280
|
+
},
|
|
1281
|
+
getLegendLabel: (metricPrefix, resource) => {
|
|
1282
|
+
return resource;
|
|
1283
|
+
},
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
metricPrefix: 'read',
|
|
1287
|
+
resource: 'bootstrap',
|
|
1288
|
+
data: [
|
|
1289
|
+
[1629306229, '7.725000000003391'],
|
|
1290
|
+
[1629306949, '7.2916666666545495'],
|
|
1291
|
+
[1629307669, '6.387500000006796'],
|
|
1292
|
+
[1629308389, '6.749999999980588'],
|
|
1293
|
+
[1629309109, '8.891666666665202'],
|
|
1294
|
+
[1629309829, '7.383333333309565'],
|
|
1295
|
+
[1629310549, '8.904166666664736'],
|
|
1296
|
+
[1629311269, '7.63749999999466'],
|
|
1297
|
+
[1629311989, '8.279166666676858'],
|
|
1298
|
+
[1629312709, '7.1708333333420455'],
|
|
1299
|
+
[1629313429, '9.079166666682198'],
|
|
1300
|
+
[1629314149, '7.504166666670557'],
|
|
1301
|
+
[1629314869, '8.766666666706442'],
|
|
1302
|
+
[1629315589, '7.3083333333245974'],
|
|
1303
|
+
[1629316309, '8.537500000020373'],
|
|
1304
|
+
[1629317029, '7.966666666640478'],
|
|
1305
|
+
[1629317749, '8.245833333336734'],
|
|
1306
|
+
[1629318469, '7.320833333324117'],
|
|
1307
|
+
[1629319189, '9.249999999992724'],
|
|
1308
|
+
[1629319909, '7.154166666659876'],
|
|
1309
|
+
[1629320629, '8.195833333326547'],
|
|
1310
|
+
[1629321349, '7.516666666670062'],
|
|
1311
|
+
[1629322069, '7.350000000005835'],
|
|
1312
|
+
[1629322789, '8.158333333340124'],
|
|
1313
|
+
[1629323509, '6.616666666656485'],
|
|
1314
|
+
[1629324229, '7.962500000006315'],
|
|
1315
|
+
[1629324949, '7.237499999985943'],
|
|
1316
|
+
[1629325669, '6.441666666663252'],
|
|
1317
|
+
[1629326389, '7.666666666652105'],
|
|
1318
|
+
[1629327109, '7.650000000030559'],
|
|
1319
|
+
[1629327829, '7.604166666666671'],
|
|
1320
|
+
[1629328549, '7.687500000004846'],
|
|
1321
|
+
[1629329269, '7.860094647752163'],
|
|
1322
|
+
[1629329989, '6.779166666638048'],
|
|
1323
|
+
[1629330709, '7.9500000000189175'],
|
|
1324
|
+
[1629331429, '6.991666666678299'],
|
|
1325
|
+
[1629332149, '8.166666666693345'],
|
|
1326
|
+
[1629332869, '7.933333333348855'],
|
|
1327
|
+
[1629333589, '6.837500000001455'],
|
|
1328
|
+
[1629334309, '7.766666666672478'],
|
|
1329
|
+
[1629335029, '7.445833333319271'],
|
|
1330
|
+
[1629335749, '6.883333333353221'],
|
|
1331
|
+
[1629336469, '7.854166666632693'],
|
|
1332
|
+
[1629337189, '7.342599073416295'],
|
|
1333
|
+
[1629337909, '9.437499999973326'],
|
|
1334
|
+
[1629338629, '7.283333333301329'],
|
|
1335
|
+
[1629339349, '8.604166666688485'],
|
|
1336
|
+
[1629340069, '7.162500000000975'],
|
|
1337
|
+
[1629340789, '7.491666666683145'],
|
|
1338
|
+
[1629341509, '7.308333333348855'],
|
|
1339
|
+
[1629342229, '6.808333333295508'],
|
|
1340
|
+
[1629342949, '9.154166666630786'],
|
|
1341
|
+
[1629343669, '6.929166666668593'],
|
|
1342
|
+
[1629344389, '7.612499999959255'],
|
|
1343
|
+
[1629345109, '7.2083333333769986'],
|
|
1344
|
+
[1629345829, '9.53750000000582'],
|
|
1345
|
+
[1629346549, '6.879082789026469'],
|
|
1346
|
+
[1629347269, '7.9416666666656965'],
|
|
1347
|
+
[1629347989, '6.78333333334497'],
|
|
1348
|
+
[1629348709, '7.258333333326547'],
|
|
1349
|
+
[1629349429, '8.27500000004268'],
|
|
1350
|
+
[1629350149, '7.383333333370203'],
|
|
1351
|
+
[1629350869, '8.212500000032989'],
|
|
1352
|
+
[1629351589, '6.912499999962179'],
|
|
1353
|
+
[1629352309, '7.941666666641439'],
|
|
1354
|
+
[1629353029, '7.387499999992244'],
|
|
1355
|
+
[1629353749, '8.483333333279006'],
|
|
1356
|
+
[1629354469, '7.291666666666657'],
|
|
1357
|
+
[1629355189, '8.42500000001263'],
|
|
1358
|
+
[1629355909, '7.354166666652105'],
|
|
1359
|
+
[1629356629, '8.541666666666671'],
|
|
1360
|
+
[1629357349, '7.116666666624951'],
|
|
1361
|
+
[1629358069, '8.241666666654055'],
|
|
1362
|
+
[1629358789, '7.699999999967972'],
|
|
1363
|
+
[1629359509, '8.429166666683159'],
|
|
1364
|
+
[1629360229, '7.541666666681223'],
|
|
1365
|
+
[1629360949, '9.304166666673467'],
|
|
1366
|
+
[1629361669, '7.004166666617181'],
|
|
1367
|
+
[1629362389, '7.8250000000116415'],
|
|
1368
|
+
[1629363109, '7.445833333282877'],
|
|
1369
|
+
[1629363829, '7.075000000040745'],
|
|
1370
|
+
[1629364549, '7.208333333328483'],
|
|
1371
|
+
[1629365269, '7.525000000023269'],
|
|
1372
|
+
[1629365989, '6.945833333350791'],
|
|
1373
|
+
[1629366709, '12.220833333340124'],
|
|
1374
|
+
[1629367429, '7.062500000029104'],
|
|
1375
|
+
[1629368149, '7.500000000024258'],
|
|
1376
|
+
[1629368869, '8.87916666666571'],
|
|
1377
|
+
[1629369589, '7.32916666665308'],
|
|
1378
|
+
[1629370309, '9.841666666664722'],
|
|
1379
|
+
[1629371029, '7.737500000027168'],
|
|
1380
|
+
[1629371749, '8.512499999997075'],
|
|
1381
|
+
[1629372469, '9.079166666609439'],
|
|
1382
|
+
[1629373189, '7.679166666663747'],
|
|
1383
|
+
[1629373909, '9.379166666646285'],
|
|
1384
|
+
[1629374629, '8.370833333343995'],
|
|
1385
|
+
[1629375349, '7.6916666666754026'],
|
|
1386
|
+
[1629376069, '8.383333333379909'],
|
|
1387
|
+
[1629376789, '7.641666666628836'],
|
|
1388
|
+
[1629377509, '9.016666666672492'],
|
|
1389
|
+
[1629378229, '7.212499999999039'],
|
|
1390
|
+
[1629378949, '7.396760323959839'],
|
|
1391
|
+
[1629379669, '9.129166666680248'],
|
|
1392
|
+
[1629380389, '7.391666666711288'],
|
|
1393
|
+
[1629381109, '8.599999999957305'],
|
|
1394
|
+
[1629381829, '8.141666666682184'],
|
|
1395
|
+
[1629382549, '9.14166666669189'],
|
|
1396
|
+
[1629383269, '7.641666666701582'],
|
|
1397
|
+
[1629383989, '9.320833333331393'],
|
|
1398
|
+
[1629384709, '7.462499999989319'],
|
|
1399
|
+
[1629385429, '9.0625'],
|
|
1400
|
+
[1629386149, '7.520833333328497'],
|
|
1401
|
+
[1629386869, '9.366666666634643'],
|
|
1402
|
+
[1629387589, '7.145833333318791'],
|
|
1403
|
+
[1629388309, '8.962500000028129'],
|
|
1404
|
+
[1629389029, '7.558333333363407'],
|
|
1405
|
+
[1629389749, '9.108333333327494'],
|
|
1406
|
+
[1629390469, '7.837499999974767'],
|
|
1407
|
+
[1629391189, '8.237499999983498'],
|
|
1408
|
+
[1629391909, '6.825000000050451'],
|
|
1409
|
+
[1629392629, '8.391666666672478'],
|
|
1410
|
+
],
|
|
1411
|
+
getTooltipLabel: (metricPrefix, resource) => {
|
|
1412
|
+
return `${resource}-${metricPrefix}`;
|
|
1413
|
+
},
|
|
1414
|
+
getLegendLabel: (metricPrefix, resource) => {
|
|
1415
|
+
return resource;
|
|
1416
|
+
},
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
metricPrefix: 'write',
|
|
1420
|
+
resource: 'master-0',
|
|
1421
|
+
data: [
|
|
1422
|
+
[1627458369000, '21.442678197153924'],
|
|
1423
|
+
[1627459089000, '21.36681325691262'],
|
|
1424
|
+
[1627459809000, '21.303022769072783'],
|
|
1425
|
+
[1627460529000, '21.745105112903502'],
|
|
1426
|
+
[1627461249000, '21.659501917772246'],
|
|
1427
|
+
[1627461969000, '21.789394499410662'],
|
|
1428
|
+
[1627462689000, '22.035432984698886'],
|
|
1429
|
+
[1627463409000, '21.937755337166166'],
|
|
1430
|
+
[1627464129000, '22.543592830775438'],
|
|
1431
|
+
[1627464849000, '22.61461323512451'],
|
|
1432
|
+
[1627465569000, '22.473777412511254'],
|
|
1433
|
+
[1627466289000, '22.44424295765556'],
|
|
1434
|
+
[1627467009000, '22.45245653627488'],
|
|
1435
|
+
[1627467729000, '22.54305181661489'],
|
|
1436
|
+
[1627468449000, '22.695125978836018'],
|
|
1437
|
+
[1627469169000, '22.48299924479342'],
|
|
1438
|
+
[1627469889000, '22.636032477571888'],
|
|
1439
|
+
[1627470609000, '22.603128979989123'],
|
|
1440
|
+
[1627471329000, '22.602268275642786'],
|
|
1441
|
+
[1627472049000, '22.592702161622086'],
|
|
1442
|
+
[1627472769000, '22.914039981438293'],
|
|
1443
|
+
[1627473489000, '22.812255544595914'],
|
|
1444
|
+
[1627474209000, '22.577553765126567'],
|
|
1445
|
+
[1627474929000, '22.45806341030243'],
|
|
1446
|
+
[1627475649000, '22.79169700649487'],
|
|
1447
|
+
[1627476369000, '22.808689769446815'],
|
|
1448
|
+
[1627477089000, '22.7532112264373'],
|
|
1449
|
+
[1627477809000, '22.771630299448873'],
|
|
1450
|
+
[1627478529000, '22.582054019280264'],
|
|
1451
|
+
[1627479249000, '23.040981576746418'],
|
|
1452
|
+
[1627479969000, '22.86925876387609'],
|
|
1453
|
+
[1627480689000, '22.85300374750672'],
|
|
1454
|
+
[1627481409000, '22.86153701631183'],
|
|
1455
|
+
[1627482129000, '22.688166569407073'],
|
|
1456
|
+
[1627482849000, '22.982232357220823'],
|
|
1457
|
+
[1627483569000, '22.926852180422316'],
|
|
1458
|
+
[1627484289000, '22.814395009685384'],
|
|
1459
|
+
[1627485009000, '22.982330723431843'],
|
|
1460
|
+
[1627485729000, '22.841888365662612'],
|
|
1461
|
+
[1627486449000, '23.03854701302393'],
|
|
1462
|
+
],
|
|
1463
|
+
getTooltipLabel: (metricPrefix, resource) => {
|
|
1464
|
+
return `${resource}-${metricPrefix}`;
|
|
1465
|
+
},
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
metricPrefix: 'read',
|
|
1469
|
+
resource: 'master-0',
|
|
1470
|
+
data: [
|
|
1471
|
+
[1627458369000, '-21.442678197153924'],
|
|
1472
|
+
[1627459089000, '-21.36681325691262'],
|
|
1473
|
+
[1627459809000, '-21.303022769072783'],
|
|
1474
|
+
[1627460529000, '-21.745105112903502'],
|
|
1475
|
+
[1627461249000, '-21.659501917772246'],
|
|
1476
|
+
[1627461969000, '-21.789394499410662'],
|
|
1477
|
+
[1627462689000, '-22.035432984698886'],
|
|
1478
|
+
[1627463409000, '-21.937755337166166'],
|
|
1479
|
+
[1627464129000, '-22.543592830775438'],
|
|
1480
|
+
[1627464849000, '-22.61461323512451'],
|
|
1481
|
+
[1627465569000, '-22.473777412511254'],
|
|
1482
|
+
[1627466289000, '-22.44424295765556'],
|
|
1483
|
+
[1627467009000, '-22.45245653627488'],
|
|
1484
|
+
[1627467729000, '-22.54305181661489'],
|
|
1485
|
+
[1627468449000, '-22.695125978836018'],
|
|
1486
|
+
[1627469169000, '-22.48299924479342'],
|
|
1487
|
+
[1627469889000, '-22.636032477571888'],
|
|
1488
|
+
[1627470609000, '-22.603128979989123'],
|
|
1489
|
+
[1627471329000, '-22.602268275642786'],
|
|
1490
|
+
[1627472049000, '-22.592702161622086'],
|
|
1491
|
+
[1627472769000, '-22.914039981438293'],
|
|
1492
|
+
[1627473489000, '-22.812255544595914'],
|
|
1493
|
+
[1627474209000, '-22.577553765126567'],
|
|
1494
|
+
[1627474929000, '-22.45806341030243'],
|
|
1495
|
+
[1627475649000, '-22.79169700649487'],
|
|
1496
|
+
[1627476369000, '-22.808689769446815'],
|
|
1497
|
+
[1627477089000, '-22.7532112264373'],
|
|
1498
|
+
[1627477809000, '-22.771630299448873'],
|
|
1499
|
+
[1627478529000, '-22.582054019280264'],
|
|
1500
|
+
[1627479249000, '-23.040981576746418'],
|
|
1501
|
+
[1627479969000, '-22.86925876387609'],
|
|
1502
|
+
[1627480689000, '-22.85300374750672'],
|
|
1503
|
+
[1627481409000, '-22.86153701631183'],
|
|
1504
|
+
[1627482129000, '-22.688166569407073'],
|
|
1505
|
+
[1627482849000, '-22.982232357220823'],
|
|
1506
|
+
[1627483569000, '-22.926852180422316'],
|
|
1507
|
+
[1627484289000, '-22.814395009685384'],
|
|
1508
|
+
[1627485009000, '-22.982330723431843'],
|
|
1509
|
+
[1627485729000, '-22.841888365662612'],
|
|
1510
|
+
[1627486449000, '-23.03854701302393'],
|
|
1511
|
+
],
|
|
1512
|
+
getTooltipLabel: (metricPrefix, resource) => {
|
|
1513
|
+
return `${resource}-${metricPrefix}`;
|
|
1514
|
+
},
|
|
1515
|
+
},
|
|
1516
|
+
];
|